Skip to content

Commit

Permalink
Update to Ruby 3.3.4 (#338)
Browse files Browse the repository at this point in the history
**This PR:**
- Updates Ruby from `3.3.3` to `3.3.4`
- Updates the version of Bundler used in `.travis.yml`

This fixes a deployment issue with Heroku. The suggested fix does not fix the problem; [updating to Ruby 3.3.4](https://stackoverflow.com/a/78727621) does. 

```
 Downloading net-pop-0.1.2 revealed dependencies not in the API or the lockfile
 (net-protocol (>= 0)).
 Running `bundle update net-pop` should fix the problem.
```
  • Loading branch information
louis-antonopoulos authored Aug 23, 2024
1 parent 771fedc commit a4ef78f
Show file tree
Hide file tree
Showing 6 changed files with 8 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.3-browsers
- image: cimg/ruby:3.3.4-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.3
ruby 3.3.4
nodejs 22.6.0
4 changes: 2 additions & 2 deletions .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.3
before_install: gem install bundler -v 2.0.2
- 3.3.4
before_install: gem install bundler -v 2.3.27
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"
# Specify your gem"s dependencies in yuri-ita.gemspec
gemspec

ruby "3.3.3"
ruby "3.3.4"

gem "rails"

Expand Down
3 changes: 2 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ GEM
date
net-protocol
net-pop (0.1.2)
net-protocol
net-protocol (0.2.2)
timeout
net-smtp (0.5.0)
Expand Down Expand Up @@ -354,7 +355,7 @@ DEPENDENCIES
yuri-ita!

RUBY VERSION
ruby 3.3.3p89
ruby 3.3.4p94

BUNDLED WITH
2.3.27
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.3
ruby-3.3.4

0 comments on commit a4ef78f

Please sign in to comment.