Skip to content

Commit

Permalink
Add CI Gemfiles for Rails 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
spohlenz committed Oct 9, 2024
1 parent 5ac6be7 commit 581537f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
ruby: '3.2'
- gemfile: rails-7.1-propshaft
ruby: '3.2'
- gemfile: rails-7.2
ruby: '3.3'
- gemfile: rails-7.2-propshaft
ruby: '3.3'
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
Expand Down
13 changes: 13 additions & 0 deletions gemfiles/rails-7.2-propshaft.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
source 'https://rubygems.org'

gem 'rails', '~> 7.2.1'
gem 'propshaft'
gem 'turbolinks'

group :test do
gem "test-unit", "~> 3.0"
gem "rspec-rails", "~> 6.0.1"
gem "capybara", "~> 2.4.4"
end

gemspec :path => "../"
13 changes: 13 additions & 0 deletions gemfiles/rails-7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
source 'https://rubygems.org'

gem 'rails', '~> 7.2.1'
gem 'sprockets-rails'
gem 'turbolinks'

group :test do
gem "test-unit", "~> 3.0"
gem "rspec-rails", "~> 6.0.1"
gem "capybara", "~> 2.4.4"
end

gemspec :path => "../"

0 comments on commit 581537f

Please sign in to comment.