Skip to content

Commit 3198912

Browse files
justin808claude
andcommitted
Update Ruby version from 3.3.4 to 3.4.6
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent e9e9f47 commit 3198912

File tree

9 files changed

+11
-13
lines changed

9 files changed

+11
-13
lines changed

.controlplane/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile
2-
ARG RUBY_VERSION=3.3.4
2+
ARG RUBY_VERSION=3.4.6
33
FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base
44

55
# Current commit hash environment variable

.github/actions/setup-environment/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717
- name: Set up Ruby
1818
uses: ruby/setup-ruby@v1
1919
with:
20-
ruby-version: '3.3.4'
20+
ruby-version: '3.4.6'
2121

2222
- name: Install Control Plane CLI and cpflow gem
2323
shell: bash

.github/workflows/js_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
node: [22.x]
17-
ruby: [3.3.4]
17+
ruby: [3.4.6]
1818

1919
env:
2020
RAILS_ENV: test

.github/workflows/lint_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
node: [22.x]
17-
ruby: [3.3.4]
17+
ruby: [3.4.6]
1818

1919
env:
2020
RAILS_ENV: test

.github/workflows/rspec_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
node: [22.x]
17-
ruby: [3.3.4]
17+
ruby: [3.4.6]
1818

1919
services:
2020
postgres:

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.4
1+
3.4.6

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
source "https://rubygems.org"
44
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
55

6-
ruby "3.3.4"
6+
ruby "3.4.6"
77

88
gem "react_on_rails", "16.1.1"
99
gem "shakapacker", "9.0.0.beta.8"
@@ -45,9 +45,9 @@ gem "autoprefixer-rails"
4545

4646
gem "awesome_print"
4747

48-
# Needed until Ruby 3.3.4 is released https://github.com/ruby/ruby/pull/11006
48+
# Needed until Ruby 3.4.6 is released https://github.com/ruby/ruby/pull/11006
4949
# Related issue: https://github.com/ruby/net-pop/issues/26
50-
# TODO: When Ruby 3.3.4 is released, upgrade Ruby and remove this line
50+
# TODO: When Ruby 3.4.6 is released, upgrade Ruby and remove this line
5151
gem "net-pop", github: "ruby/net-pop"
5252

5353
gem "redcarpet"

Gemfile.lock

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,6 @@ GEM
148148
factory_bot (~> 6.4)
149149
railties (>= 5.0.0)
150150
ffi (1.17.0)
151-
ffi (1.17.0-arm64-darwin)
152-
ffi (1.17.0-x86_64-linux-gnu)
153151
foreman (0.88.1)
154152
generator_spec (0.10.0)
155153
activesupport (>= 3.0.0)
@@ -508,7 +506,7 @@ DEPENDENCIES
508506
web-console
509507

510508
RUBY VERSION
511-
ruby 3.3.4p94
509+
ruby 3.4.6p54
512510

513511
BUNDLED WITH
514512
2.4.17

conductor-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33

44
echo "🚀 Setting up React on Rails workspace..."
55

6-
# Note: This project requires Ruby 3.3.4.
6+
# Note: This project requires Ruby 3.4.6.
77
# Please ensure you have the correct Ruby version active before running this script.
88

99
# Copy environment files if they exist in the root

0 commit comments

Comments
 (0)