Skip to content

Commit

Permalink
Update CI Gemfiles for Rails 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
spohlenz committed Jul 3, 2024
1 parent 15fd00e commit d0cd36d
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
ruby: '3.3'
- 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
27 changes: 27 additions & 0 deletions gemfiles/rails-7.2-propshaft.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
source 'https://rubygems.org'

group :development do
gem 'bcrypt'
gem 'faker'
end

group :test do
gem 'coveralls_reborn', require: false
gem 'simplecov', require: false

gem 'capybara'
gem 'capybara-selenium'
gem 'rexml'
gem 'selenium-webdriver'
gem 'webdrivers'
gem 'puma'

gem 'haml', '~> 6.0'
end

gem 'rails', '7.2.0.beta2'
gem 'propshaft'
gem 'sqlite3', '~> 1.4'
gem 'sassc-rails'

gemspec path: "../"
4 changes: 2 additions & 2 deletions gemfiles/rails-7.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ group :test do
gem 'haml', '~> 6.0'
end

gem 'rails', '7.2.0.beta1'

gem 'rails', '7.2.0.beta2'
gem 'sprockets-rails'
gem 'sqlite3', '~> 1.4'
gem 'sassc-rails'

Expand Down

0 comments on commit d0cd36d

Please sign in to comment.