Skip to content

Commit c6ef783

Browse files
authored
Add CI Gemfiles for Rails 8.0 and Ruby 3.4 (#317)
1 parent 5833aab commit c6ef783

File tree

4 files changed

+32
-1
lines changed

4 files changed

+32
-1
lines changed

.github/workflows/rspec.yml

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ jobs:
2424
ruby: '3.3'
2525
- gemfile: rails-7.2-propshaft
2626
ruby: '3.3'
27+
- gemfile: rails-8.0
28+
ruby: '3.4'
29+
- gemfile: rails-8.0-propshaft
30+
ruby: '3.4'
2731
runs-on: ubuntu-latest
2832
env:
2933
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile

Gemfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
source 'https://rubygems.org'
22

3-
gem 'rails', '~> 7.1.0'
3+
gem 'rails', '~> 8.0.1'
4+
#gem 'rails', '~> 7.1.0'
45
#gem 'rails', '~> 7.0.0'
56
#gem 'rails', '~> 6.1.0'
67
#gem 'rails', '~> 6.0.0'

gemfiles/rails-8.0-propshaft.gemfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '~> 8.0.1'
4+
gem 'propshaft'
5+
gem 'turbolinks'
6+
7+
group :test do
8+
gem "test-unit", "~> 3.0"
9+
gem "rspec-rails", "~> 6.0.1"
10+
gem "capybara", "~> 2.4.4"
11+
end
12+
13+
gemspec :path => "../"

gemfiles/rails-8.0.gemfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '~> 8.0.1'
4+
gem 'sprockets-rails'
5+
gem 'turbolinks'
6+
7+
group :test do
8+
gem "test-unit", "~> 3.0"
9+
gem "rspec-rails", "~> 6.0.1"
10+
gem "capybara", "~> 2.4.4"
11+
end
12+
13+
gemspec :path => "../"

0 commit comments

Comments
 (0)