Skip to content

Commit

Permalink
Run specs on Rails 6.1 by default
Browse files Browse the repository at this point in the history
The Rails version will be changed by ENV varaibles when needed.
  • Loading branch information
kennyadsl committed Jan 8, 2021
1 parent e8f0d96 commit 355d7fa
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 @@ -9,7 +9,7 @@ group :backend, :frontend, :core, :api do
if ENV['RAILS_VERSION'] == 'master'
gem 'rails', github: 'rails', require: false
else
gem 'rails', ENV['RAILS_VERSION'] || '~> 6.0.0', require: false
gem 'rails', ENV['RAILS_VERSION'] || '~> 6.1.0', require: false
end
# rubocop:enable Bundler/DuplicatedGem

Expand Down

0 comments on commit 355d7fa

Please sign in to comment.