Skip to content

Commit

Permalink
Add CI Gemfiles for Rails 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spohlenz committed Sep 30, 2024
1 parent 261760a commit 1b75e11
Show file tree
Hide file tree
Showing 3 changed files with 40 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 @@ -28,6 +28,10 @@ jobs:
ruby: '3.3'
- gemfile: rails-7.2-propshaft
ruby: '3.3'
- gemfile: rails-8.0
ruby: '3.3'
- gemfile: rails-8.0-propshaft
ruby: '3.3'
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
Expand Down
18 changes: 18 additions & 0 deletions gemfiles/rails-8.0-propshaft.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
source 'https://rubygems.org'

group :test do
gem "rspec-rails"

gem "coveralls_reborn", require: false
gem "capybara"
end

gem "rails", github: "rails/rails"
gem "turbo-rails", github: "hotwired/turbo-rails"
gem "propshaft"
gem "sqlite3", "~> 1.4"
gem "devise"

gem "trestle", github: "TrestleAdmin/trestle"

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

group :test do
gem "rspec-rails"

gem "coveralls_reborn", require: false
gem "capybara"
end

gem "rails", github: "rails/rails"
gem "turbo-rails", github: "hotwired/turbo-rails"
gem "sprockets-rails"
gem "sqlite3", "~> 1.4"
gem "devise"

gem "trestle", github: "TrestleAdmin/trestle"

gemspec path: "../"

0 comments on commit 1b75e11

Please sign in to comment.