Skip to content

Commit

Permalink
Use Rails 7.1 in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zuchmanski committed Aug 12, 2024
1 parent a533033 commit fa55dae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gemfiles/rails_7.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
source 'https://rubygems.org'

gem 'rack'
gem 'rails', '~> 7.0'
gem 'rails', '~> 7.1'
gem 'rake'

group :development, :test do
Expand Down
4 changes: 2 additions & 2 deletions spec/integration/rails/support/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
require 'action_controller/railtie'

class TestApp < Rails::Application
secrets.secret_token = 'secret_token'
secrets.secret_key_base = 'secret_key_base'
credentials.secret_token = 'secret_token'
credentials.secret_key_base = 'secret_key_base'

config.logger = Logger.new($stdout)
Rails.logger = config.logger
Expand Down

0 comments on commit fa55dae

Please sign in to comment.