Skip to content

Commit 551bc8e

Browse files
epughmathieujobin
andauthored
Add support for Rails 8 (#172)
* Try out rc2 of Rails 8 * Move to Rails 8 * use released version * use two digits * remove third digit style * Exclude Ruby 3.1 for Rails 8, unsupported. --------- Co-authored-by: Mathieu Jobin <99191+mathieujobin@users.noreply.github.com>
1 parent efa901f commit 551bc8e

File tree

5 files changed

+20
-2
lines changed

5 files changed

+20
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
- rails_7.0
2626
- rails_7.1
2727
- rails_7.2
28+
- rails_8.0
29+
exclude:
30+
- gemfile: rails_8.0
31+
ruby: '3.1'
2832
include:
2933
- gemfile: rails_5.0
3034
ruby: '2.6'

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
### [Unreleased]
44

5+
### 1.3.0
6+
7+
- Support Rails 8
8+
59
### 1.2.2
610

711
- Support Rails 7.2

angular-rails-templates.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
1616

1717
s.require_paths = ["lib"]
1818

19-
s.add_dependency "railties", ">= 5.0", "< 7.3"
19+
s.add_dependency "railties", ">= 5.0", "< 8.1"
2020
s.add_dependency "sprockets", ">= 3.0", '< 5'
2121
s.add_dependency "sprockets-rails"
2222
s.add_dependency "tilt"

gemfiles/rails_8.0.gemfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
source "https://rubygems.org"
2+
3+
gem "rails", "~> 8.0.0"
4+
gem "slim-rails"
5+
gem "haml"
6+
gem "kramdown"
7+
8+
gem 'coveralls', require: false
9+
10+
gemspec :path => ".././"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module AngularRailsTemplates
2-
VERSION = '1.2.2'
2+
VERSION = '1.3.0'
33
end

0 commit comments

Comments
 (0)