Skip to content

Commit b4a1bb0

Browse files
authored
Merge pull request #97 from shmokmt/ruby347
Add Ruby 3.4.7
2 parents 845288c + 7b3d92a commit b4a1bb0

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/publish-new-image-version.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
RUBY_VERSION:
13+
- 3.4.7
1314
- 3.4.6
1415
- 3.4.5
1516
- 3.4.4

features/src/ruby/devcontainer-feature.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "ruby",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"name": "Ruby",
55
"description": "Installs Ruby and a version manager (mise or rbenv) along with libraries needed to build Ruby.",
66
"documentationURL": "https://github.com/rails/devcontainer/tree/main/features/src/ruby",
@@ -18,7 +18,7 @@
1818
"options": {
1919
"version": {
2020
"type": "string",
21-
"default": "3.4.6",
21+
"default": "3.4.7",
2222
"description": "The ruby version to be installed"
2323
},
2424
"versionManager": {

features/test/ruby/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ check "mise is installed" bash -c "mise --version"
88
check "mise init is sourced in the bashrc" bash -c "grep 'eval \"\$(~/.local/bin/mise activate bash)\"' $HOME/.bashrc"
99
check "mise idiomatic version file is enabled for ruby" bash -c "mise settings | grep idiomatic_version_file_enable_tools | grep ruby"
1010
check "Ruby is installed with YJIT" bash -c "RUBY_YJIT_ENABLE=1 ruby -v | grep +YJIT"
11-
check "Ruby version is set to 3.4.6" bash -c "mise use -g ruby | grep 3.4.6"
11+
check "Ruby version is set to 3.4.7" bash -c "mise use -g ruby | grep 3.4.7"
1212

1313
reportResults

features/test/ruby/with_rbenv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ check "rbenv is installed" bash -c "rbenv --version"
99
check "ruby-build is installed" bash -c "ls -l $HOME/.rbenv/plugins/ruby-build | grep '\-> /usr/local/share/ruby-build'"
1010
eval "$(rbenv init -)"
1111
check "Ruby is installed with YJIT" bash -c "RUBY_YJIT_ENABLE=1 ruby -v | grep +YJIT"
12-
check "Ruby version is set to 3.4.6" bash -c "rbenv global | grep 3.4.6"
12+
check "Ruby version is set to 3.4.7" bash -c "rbenv global | grep 3.4.7"
1313

1414
reportResults

0 commit comments

Comments
 (0)