Skip to content

Commit

Permalink
Rails 7.1 also runs rack 3 and requires to bundle rackup gem now
Browse files Browse the repository at this point in the history
  • Loading branch information
amatsuda committed Jun 16, 2024
1 parent d42ed6e commit 1478a50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ elsif ENV['RAILS_VERSION']
elsif (ENV['RAILS_VERSION'] <= '8') || (RUBY_VERSION < '3')
gem 'sqlite3', '< 2'
end
gem 'rackup' if ENV['RAILS_VERSION'] > '7.1'
gem 'rackup' if ENV['RAILS_VERSION'] >= '7.1'
else
gem 'rails'
end
Expand Down

0 comments on commit 1478a50

Please sign in to comment.