Skip to content

Commit c82f80b

Browse files
authored
Merge pull request #234 from bokmann/233-rails-8
Update Build Matrix and Add Rails 8 Support
2 parents 360d931 + 50f961d commit c82f80b

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,18 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
ruby: ["2.7", "3.0"]
13+
ruby: ["3.2", "3.3"]
1414
bundler: [default]
1515
gemfile:
16-
- rails-6.0
17-
- rails-6.1
18-
- rails-7.0
16+
- rails-7.1
17+
- rails-7.2
18+
- rails-8.0
1919
include:
2020
- { ruby: "2.5", gemfile: "rails-5.2", bundler: "default" }
2121
- { ruby: "2.6", gemfile: "rails-5.2", bundler: "default" }
22+
- { ruby: "2.7", gemfile: "rails-6.0", bundler: "default" }
23+
- { ruby: "3.0", gemfile: "rails-6.1", bundler: "default" }
24+
- { ruby: "3.1", gemfile: "rails-7.0", bundler: "default" }
2225

2326
env:
2427
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ source 'https://rubygems.org'
44
gemspec
55

66
group :development do
7-
gem "guard", ">= 2.9"
7+
gem "guard", "~> 2.9"
88
gem "guard-minitest"
99
end

font-awesome-rails.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
1515
gem.require_paths = ["lib"]
1616
gem.version = FontAwesome::Rails::VERSION
1717

18-
gem.add_dependency "railties", ">= 3.2", "< 8.0"
18+
gem.add_dependency "railties", ">= 3.2", "< 9.0"
1919

2020
gem.add_development_dependency "activesupport"
2121
gem.add_development_dependency "sassc-rails"

gemfiles/rails-7.1.gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://rubygems.org'
2+
3+
gemspec path: "../"
4+
gem "railties", "~> 7.1.0"

gemfiles/rails-7.2.gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://rubygems.org'
2+
3+
gemspec path: "../"
4+
gem "railties", "~> 7.2.0"

gemfiles/rails-8.0.gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://rubygems.org'
2+
3+
gemspec path: "../"
4+
gem "railties", "~> 8.0.0"

0 commit comments

Comments
 (0)