Skip to content

Commit

Permalink
Update Ruby to 3.3.5 and Bundler to 2.5.22 (#377)
Browse files Browse the repository at this point in the history
**This PR:**
- Updates Ruby to `3.3.5` 
- Updates Bundler to `2.5.22`
- Adds [ostruct](https://github.com/ruby/ostruct) to `Gemfile` to
address warning when running tests or starting the Rails console
  • Loading branch information
louis-antonopoulos authored Nov 13, 2024
1 parent 51e2617 commit 8520c40
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
jobs:
build:
docker:
- image: cimg/ruby:3.3.4-browsers
- image: cimg/ruby:3.3.5-browsers
environment:
BUNDLE_JOBS: 3
BUNDLE_RETRY: 3
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ruby 3.3.4
ruby 3.3.5
nodejs 22.6.0
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ sudo: false
language: ruby
cache: bundler
rvm:
- 3.3.4
- 3.3.5
before_install: gem install bundler -v 2.3.27
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source "https://rubygems.org"
# Specify your gem"s dependencies in yuri-ita.gemspec
gemspec

ruby "3.3.4"
ruby "3.3.5"

gem "rails"

Expand All @@ -20,6 +20,7 @@ group :test, :development do
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "dotenv-rails"
gem "factory_bot_rails"
gem "ostruct"
gem "rspec-rails"
end

Expand Down
6 changes: 4 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ GEM
racc (~> 1.4)
nokogiri (1.16.7-x86_64-linux)
racc (~> 1.4)
ostruct (0.6.0)
pg (1.5.9)
pry (0.14.2)
coderay (~> 1.1)
Expand Down Expand Up @@ -324,6 +325,7 @@ DEPENDENCIES
factory_bot_rails
jsbundling-rails
listen (>= 3.0.5)
ostruct
pg (>= 0.18, < 2.0)
pry-rails (~> 0.3.7)
puma (~> 6.4)
Expand All @@ -340,7 +342,7 @@ DEPENDENCIES
yuri-ita!

RUBY VERSION
ruby 3.3.4p94
ruby 3.3.5p100

BUNDLED WITH
2.3.27
2.5.22
2 changes: 1 addition & 1 deletion spec/example_app/.ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.3.4
ruby-3.3.5

0 comments on commit 8520c40

Please sign in to comment.