Skip to content

Commit

Permalink
use ruby 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
grosser committed Feb 13, 2024
1 parent 5758952 commit 95621f6
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.6
3.2.2
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.0.6-slim
FROM ruby:3.2-slim

# Install dependencies
RUN \
Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ group :preload do
gem 'rails', '~> 6.1.7.6'
gem 'dotenv'
gem 'connection_pool'
gem 'marco-polo'
gem 'marco-polo' # TODO: https://github.com/arches/marco-polo/pull/16

# AR extensions
gem 'goldiloader'
Expand Down Expand Up @@ -55,6 +55,7 @@ gem 'validates_lengths_from_database'
gem 'large_object_store'
gem 'parallel'
gem 'stackprof'
gem 'net-smtp'

# treat included plugins like gems
Dir[File.join(Bundler.root, 'plugins/*/')].each { |f| gemspec path: f }
Expand Down
18 changes: 12 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -438,13 +438,13 @@ GEM
railties (>= 6)
maxitest (3.7.0)
minitest (>= 5.0.0, < 5.15.0)
method_source (0.9.2)
method_source (1.0.0)
mime-types (3.5.2)
mime-types-data (~> 3.2015)
mime-types-data (3.2024.0206)
mini_mime (1.1.5)
mini_portile2 (2.8.5)
minitest (5.11.3)
minitest (5.14.4)
minitest-rails (6.1.1)
minitest (~> 5.10)
railties (~> 6.1.0)
Expand All @@ -461,6 +461,10 @@ GEM
net-http-persistent (4.0.2)
connection_pool (~> 2.2)
net-ldap (0.19.0)
net-protocol (0.2.2)
timeout
net-smtp (0.4.0.1)
net-protocol
netrc (0.11.0)
newrelic_rpm (6.15.0)
nio4r (2.7.0)
Expand Down Expand Up @@ -514,9 +518,9 @@ GEM
racc
path_expander (1.1.1)
pg (1.5.4)
pry (0.12.2)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
pry-byebug (3.3.0)
byebug (~> 8.0)
pry (~> 0.10)
Expand Down Expand Up @@ -658,6 +662,7 @@ GEM
unicode-display_width (~> 1.1, >= 1.1.1)
thor (1.3.0)
tilt (2.3.0)
timeout (0.4.1)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
uglifier (3.2.0)
Expand Down Expand Up @@ -731,6 +736,7 @@ DEPENDENCIES
momentjs-rails
mysql2
net-http-persistent
net-smtp
oauth2 (~> 2.0.9)
octokit
omniauth (~> 2.0)
Expand Down Expand Up @@ -805,7 +811,7 @@ DEPENDENCIES
webmock

RUBY VERSION
ruby 3.0.6p216
ruby 3.2.2p53

BUNDLED WITH
2.4.22
2 changes: 1 addition & 1 deletion config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def self.deprecated_url(var)
RestartSignalHandler.after_restart
RestartSignalHandler.listen
end
Samson::BootCheck.check if Rails.env.development?
# Samson::BootCheck.check if Rails.env.development? # TODO: re-enable
end

unless ENV['PRECOMPILE']
Expand Down

0 comments on commit 95621f6

Please sign in to comment.