Skip to content

Commit

Permalink
Add support for ruby3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
snehaoracle committed Aug 13, 2024
1 parent 07b9343 commit 8240cb6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

# Releases

## v 0.6.35

* Enabling support for ruby3.3

## v 0.6.34

* Enabling support for go1.20
Expand Down
1 change: 1 addition & 0 deletions langs/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ func init() {

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

registerHelper(&KotlinLangHelper{})
Expand Down
1 change: 1 addition & 0 deletions test/cli_init_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ var runtimes = []string{
"java17",
"kotlin",
"ruby",
"ruby3.3",
"ruby3.1",
"node",
"node20",
Expand Down
1 change: 1 addition & 0 deletions test/cli_lang_boilerplate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ var Runtimes = []struct {
{"node20", ""},
{"node18", ""},
{"ruby", ""},
{"ruby3.3", ""},
{"ruby3.1", ""},
{"python", ""},
{"python3.8", ""},
Expand Down

0 comments on commit 8240cb6

Please sign in to comment.