Skip to content

Commit

Permalink
Add CI Gemfiles for Rails 8.0.0.alpha (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
spohlenz authored Aug 23, 2024
1 parent a18e54f commit 7561a9e
Show file tree
Hide file tree
Showing 3 changed files with 56 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 @@ -30,6 +30,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
26 changes: 26 additions & 0 deletions gemfiles/rails-8.0-propshaft.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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', github: 'rails/rails'
gem 'propshaft'
gem 'sqlite3'

gemspec path: "../"
26 changes: 26 additions & 0 deletions gemfiles/rails-8.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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', github: 'rails/rails'
gem 'sprockets-rails'
gem 'sqlite3'

gemspec path: "../"

0 comments on commit 7561a9e

Please sign in to comment.