From 2f74ff42c84bdef2eaa4e11b52f5e4fd2b3e7657 Mon Sep 17 00:00:00 2001 From: Sneha G P S Date: Wed, 21 Feb 2024 18:37:32 +0530 Subject: [PATCH] Remove support for ruby 2.7 version --- langs/base.go | 1 - test/cli_init_test.go | 1 - test/cli_lang_boilerplate_test.go | 1 - 3 files changed, 3 deletions(-) diff --git a/langs/base.go b/langs/base.go index 9f8e4fda..274c88d9 100644 --- a/langs/base.go +++ b/langs/base.go @@ -51,7 +51,6 @@ func init() { //New runtime support for Ruby 3.1 // order matter, 'ruby' will pick up the first RubyLangHelper registerHelper(&RubyLangHelper{Version: "3.1"}) - registerHelper(&RubyLangHelper{Version: "2.7"}) registerHelper(&KotlinLangHelper{}) diff --git a/test/cli_init_test.go b/test/cli_init_test.go index f8167a07..270190b1 100644 --- a/test/cli_init_test.go +++ b/test/cli_init_test.go @@ -33,7 +33,6 @@ var runtimes = []string{ "kotlin", "ruby", "ruby3.1", - "ruby2.7", "node", "node18", "node16", diff --git a/test/cli_lang_boilerplate_test.go b/test/cli_lang_boilerplate_test.go index 110b53ae..84d62b16 100644 --- a/test/cli_lang_boilerplate_test.go +++ b/test/cli_lang_boilerplate_test.go @@ -44,7 +44,6 @@ var Runtimes = []struct { {"node14", ""}, {"ruby", ""}, {"ruby3.1", ""}, - {"ruby2.7", ""}, {"python", ""}, {"python3.8", ""}, {"python3.9", ""},