Skip to content

Commit efa901f

Browse files
Support Rails 7.2 (#170)
* Update railties dependency to support Rails 7.2 * don't need to check ruby 2.7/3.0 for rails version that supports new ones * add ruby 3.3 --------- Co-authored-by: Mansoor Khan <thisismansoorkhan@gmail.com> Co-authored-by: Mathieu Jobin <99191+mathieujobin@users.noreply.github.com>
1 parent 6930425 commit efa901f

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
ruby:
19-
- '2.7'
20-
- '3.0'
2119
- '3.1'
2220
- '3.2'
21+
- '3.3'
2322
gemfile:
2423
- rails_6.0
2524
- rails_6.1
2625
- rails_7.0
2726
- rails_7.1
27+
- rails_7.2
2828
include:
2929
- gemfile: rails_5.0
3030
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.2.2
6+
7+
- Support Rails 7.2
8+
59
### 1.2.1
610

711
- Support Rails 7.1

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.2"
19+
s.add_dependency "railties", ">= 5.0", "< 7.3"
2020
s.add_dependency "sprockets", ">= 3.0", '< 5'
2121
s.add_dependency "sprockets-rails"
2222
s.add_dependency "tilt"

gemfiles/rails_7.2.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", "~> 7.2.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.1'
2+
VERSION = '1.2.2'
33
end

0 commit comments

Comments
 (0)