Skip to content

Commit

Permalink
Rails 7.1 is out
Browse files Browse the repository at this point in the history
  • Loading branch information
n-rodriguez committed Oct 5, 2023
1 parent 86869ac commit 86f683e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- '3.0'
- 'head'
rails:
- rails_7.1.0
- rails_7.0.8
- rails_6.1.7
- rails_6.0.6
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ coverage/

# Ignore dummy app files
spec/dummy/db/*.sqlite3
spec/dummy/db/*.sqlite3-journal
spec/dummy/db/*.sqlite3-*
spec/dummy/log/*.log
spec/dummy/tmp/
3 changes: 2 additions & 1 deletion Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ RAILS_VERSIONS = %w[
6.0.6
6.1.7
7.0.8
7.1.0
].freeze

RAILS_VERSIONS.each do |version|
appraise "rails_#{version}" do
gem "rails", version
gem "sprockets-rails" if ["7.0.8"].include?(version)
gem "sprockets-rails" if ["7.0.8", "7.1.0"].include?(version)
end
end
8 changes: 8 additions & 0 deletions gemfiles/rails_7.1.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "sprockets-rails"
gem "rails", "7.1.0"

gemspec path: "../"

0 comments on commit 86f683e

Please sign in to comment.