Skip to content

Commit

Permalink
Relax rails version in Gemfile
Browse files Browse the repository at this point in the history
and, add sprockets-rails as a explicit development dependency.
  • Loading branch information
meganemura committed May 1, 2023
1 parent 55dc76d commit 9974274
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@ gemspec
# Git. Remember to move these dependencies to your gemspec before releasing
# your gem to rubygems.org.

gem 'rails', '>= 5.2.4.6', '< 6.2'
gem 'rails', '>= 5.2.4.6', '< 7.1'

group :development, :test do
gem 'pry'
gem 'pry-nav'
gem 'rubocop'

# Since rails 7.0, rails does not require sprockets-rails.
# This is added to run the same tests as in previous versions.
gem 'sprockets-rails'
end

0 comments on commit 9974274

Please # to comment.