diff --git a/.ruby-version b/.ruby-version index a0891f5..fa7adc7 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.3.4 +3.3.5 diff --git a/Dockerfile b/Dockerfile index 454e35b..0faa233 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # docker run -d -p 80:80 -p 443:443 --name my-app -e RAILS_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" diff --git a/Gemfile b/Gemfile index cf26aac..a1ec00f 100644 --- a/Gemfile +++ b/Gemfile @@ -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" diff --git a/Gemfile.lock b/Gemfile.lock index 040e739..1134c80 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -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) @@ -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) @@ -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) @@ -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) @@ -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) @@ -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 @@ -328,7 +326,7 @@ DEPENDENCIES yard RUBY VERSION - ruby 3.3.4p94 + ruby 3.3.5p100 BUNDLED WITH - 2.5.13 + 2.5.16 diff --git a/README.md b/README.md index 1c4b4ee..8ace5ad 100644 --- a/README.md +++ b/README.md @@ -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.