Skip to content

Commit

Permalink
Add support for Rails 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
n-rodriguez committed Aug 11, 2024
1 parent c69eba0 commit efb59aa
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- '3.1'
- 'head'
rails:
- rails_7.2.0
- rails_7.1.3
- rails_7.0.8

Expand Down
4 changes: 4 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
RAILS_VERSIONS = %w[
7.0.8
7.1.3
7.2.0
].freeze

RAILS_VERSIONS.each do |version|
Expand All @@ -29,6 +30,9 @@ RAILS_VERSIONS.each do |version|
install_if '-> { Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.4.0") }' do
gem "logger"
end

when "7.2.0"
gem "sprockets-rails"
end

end
Expand Down
22 changes: 22 additions & 0 deletions gemfiles/rails_7.2.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "appraisal", git: "https://github.com/n-rodriguez/appraisal.git", branch: "wip/combustion"
gem "capybara"
gem "cuprite"
gem "guard-rspec"
gem "jquery-rails"
gem "puma"
gem "rake"
gem "rspec-rails"
gem "rubocop"
gem "rubocop-capybara"
gem "rubocop-rake"
gem "rubocop-rspec"
gem "simplecov"
gem "sqlite3", "~> 1.5.0"
gem "rails", "7.2.0"
gem "sprockets-rails"

gemspec path: "../"

0 comments on commit efb59aa

Please sign in to comment.