Skip to content

Commit

Permalink
Ruby 3.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
RISCfuture committed Sep 9, 2024
1 parent a18222f commit 836105c
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.4
3.3.5
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# docker run -d -p 80:80 -p 443:443 --name my-app -e RAILS_MASTER_KEY=<value from config/master.key> my-app

# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
ARG RUBY_VERSION=3.3.4
ARG RUBY_VERSION=3.3.5
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base

LABEL fly_launch_runtime="rails"
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

ruby "3.3.4"
ruby "3.3.5"

# FRAMEWORK
gem "bootsnap"
Expand Down
36 changes: 17 additions & 19 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,17 @@ GEM
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
aws-eventstream (1.3.0)
aws-partitions (1.970.0)
aws-sdk-core (3.202.2)
aws-partitions (1.971.0)
aws-sdk-core (3.203.0)
aws-eventstream (~> 1, >= 1.3.0)
aws-partitions (~> 1, >= 1.651.0)
aws-sigv4 (~> 1.9)
jmespath (~> 1, >= 1.6.1)
aws-sdk-kms (1.88.0)
aws-sdk-core (~> 3, >= 3.201.0)
aws-sdk-kms (1.89.0)
aws-sdk-core (~> 3, >= 3.203.0)
aws-sigv4 (~> 1.5)
aws-sdk-s3 (1.159.0)
aws-sdk-core (~> 3, >= 3.201.0)
aws-sdk-s3 (1.160.0)
aws-sdk-core (~> 3, >= 3.203.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.5)
aws-sigv4 (1.9.1)
Expand Down Expand Up @@ -146,7 +146,7 @@ GEM
erubi (1.13.0)
et-orbi (1.2.11)
tzinfo
factory_bot (6.4.6)
factory_bot (6.5.0)
activesupport (>= 5.0.0)
factory_bot_rails (6.4.3)
factory_bot (~> 6.4)
Expand Down Expand Up @@ -208,7 +208,7 @@ GEM
mini_mime (1.1.5)
minitest (5.25.1)
msgpack (1.7.2)
net-imap (0.4.15)
net-imap (0.4.16)
date
net-protocol
net-pop (0.1.2)
Expand All @@ -225,7 +225,7 @@ GEM
nokogiri (1.16.7-x86_64-linux)
racc (~> 1.4)
orm_adapter (0.5.0)
pg (1.5.7)
pg (1.5.8)
psych (5.1.2)
stringio
public_suffix (6.0.1)
Expand Down Expand Up @@ -287,22 +287,21 @@ GEM
redis-client (>= 0.22.0)
redis-client (0.22.2)
connection_pool
reline (0.5.9)
reline (0.5.10)
io-console (~> 0.5)
responders (3.1.1)
actionpack (>= 5.2)
railties (>= 5.2)
rexml (3.3.6)
strscan
rspec-core (3.13.0)
rexml (3.3.7)
rspec-core (3.13.1)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.2)
rspec-expectations (3.13.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-mocks (3.13.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-rails (7.0.0)
rspec-rails (7.0.1)
actionpack (>= 7.0)
activesupport (>= 7.0)
railties (>= 7.0)
Expand All @@ -320,7 +319,6 @@ GEM
listen (>= 2.7, < 4.0)
spring (>= 4)
stringio (3.1.1)
strscan (3.1.0)
thor (1.3.2)
timeout (0.4.1)
tzinfo (2.0.6)
Expand All @@ -341,7 +339,7 @@ GEM
websocket-driver (0.7.6)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
yard (0.9.36)
yard (0.9.37)
zeitwerk (2.6.18)

PLATFORMS
Expand Down Expand Up @@ -386,7 +384,7 @@ DEPENDENCIES
yard

RUBY VERSION
ruby 3.3.4p94
ruby 3.3.5p100

BUNDLED WITH
2.5.18
2.5.16
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ not part of the Gemfile and should be `gem install`ed manually.)
An example Foreman script that accomplishes all of this:

```
backend: cd Backend && rvm 3.3.4@greenie exec rails server
backend: cd Backend && rvm 3.3.5@greenie exec rails server
frontend: cd Frontend && yarn serve
workers: cd Backend && rvm 3.3.4@greenie exec bundle exec good_job start
cable: cd Backend && rvm 3.3.4@greenie exec ./bin/cable
workers: cd Backend && rvm 3.3.5@greenie exec bundle exec good_job start
cable: cd Backend && rvm 3.3.5@greenie exec ./bin/cable
mail: mailcatcher -f
```

Expand All @@ -74,10 +74,10 @@ An example Foreman script that launches all necessary processes and starts the
E2E test application:

```
backend: cd Backend && rvm 3.3.4@greenie exec rails server -e cypress -b localhost
backend: cd Backend && rvm 3.3.5@greenie exec rails server -e cypress -b localhost
frontend: cd Frontend && yarn run test:e2e
workers: cd Backend && RAILS_ENV=cypress rvm 3.3.4@greenie exec bundle exec good_job start
cable: cd Backend && rvm 3.3.4@greenie exec ./bin/cable -e cypress
workers: cd Backend && RAILS_ENV=cypress rvm 3.3.5@greenie exec bundle exec good_job start
cable: cd Backend && rvm 3.3.5@greenie exec ./bin/cable -e cypress
```

#### Deployment
Expand Down

0 comments on commit 836105c

Please sign in to comment.