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 86dc5ba commit 2d0a209
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 19 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 @@ -3,7 +3,7 @@
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "3.3.4"
ruby "3.3.5"

# CORE
gem "puma"
Expand Down
24 changes: 11 additions & 13 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,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 @@ -169,7 +169,7 @@ GEM
marcel (1.0.4)
mini_mime (1.1.5)
minitest (5.25.1)
net-imap (0.4.15)
net-imap (0.4.16)
date
net-protocol
net-pop (0.1.2)
Expand All @@ -186,7 +186,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 @@ -245,22 +245,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 @@ -271,7 +270,6 @@ GEM
rspec-support (3.13.1)
securerandom (0.3.1)
stringio (3.1.1)
strscan (3.1.0)
thor (1.3.2)
timeout (0.4.1)
tzinfo (2.0.6)
Expand All @@ -292,7 +290,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 @@ -328,7 +326,7 @@ DEPENDENCIES
yard

RUBY VERSION
ruby 3.3.4p94
ruby 3.3.5p100

BUNDLED WITH
2.5.13
2.5.16
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ To run the server in development mode, you can create a `Procfile` with contents
such as:

```
backend: cd Backend && rvm 3.3.4@flyweight exec rails server
backend: cd Backend && rvm 3.3.5@flyweight exec rails server
frontend: cd Frontend && yarn dev
jobs: cd Backend && rvm 3.3.4@flyweight exec bundle exec good_job start
cable: cd Backend && rvm 3.3.4@flyweight exec ./bin/cable
jobs: cd Backend && rvm 3.3.5@flyweight exec bundle exec good_job start
cable: cd Backend && rvm 3.3.5@flyweight exec ./bin/cable
```

Install the `foreman` gem to run the Procfile.
Expand Down

0 comments on commit 2d0a209

Please sign in to comment.