Skip to content

Commit 98ef85a

Browse files
committed
Adding support for ruby3.3
1 parent 07b9343 commit 98ef85a

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

RELEASES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11

22
# Releases
33

4+
## v 0.6.35
5+
6+
* Enabling support for ruby3.3
7+
48
## v 0.6.34
59

610
* Enabling support for go1.20

langs/base.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ func init() {
5050

5151
//New runtime support for Ruby 3.1
5252
// order matter, 'ruby' will pick up the first RubyLangHelper
53+
registerHelper(&RubyLangHelper{Version: "3.3"})
5354
registerHelper(&RubyLangHelper{Version: "3.1"})
5455

5556
registerHelper(&KotlinLangHelper{})

test/cli_init_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ var runtimes = []string{
3232
"java17",
3333
"kotlin",
3434
"ruby",
35+
"ruby3.3",
3536
"ruby3.1",
3637
"node",
3738
"node20",

test/cli_lang_boilerplate_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ var Runtimes = []struct {
4343
{"node20", ""},
4444
{"node18", ""},
4545
{"ruby", ""},
46+
{"ruby3.3", ""},
4647
{"ruby3.1", ""},
4748
{"python", ""},
4849
{"python3.8", ""},

0 commit comments

Comments
 (0)