Skip to content

Commit

Permalink
Support Rails 7.2 (#170)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
Co-authored-by: Mathieu Jobin <[email protected]>
  • Loading branch information
3 people authored Aug 19, 2024
1 parent 6930425 commit efa901f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
fail-fast: false
matrix:
ruby:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'
gemfile:
- rails_6.0
- rails_6.1
- rails_7.0
- rails_7.1
- rails_7.2
include:
- gemfile: rails_5.0
ruby: '2.6'
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

### [Unreleased]

### 1.2.2

- Support Rails 7.2

### 1.2.1

- Support Rails 7.1
Expand Down
2 changes: 1 addition & 1 deletion angular-rails-templates.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |s|

s.require_paths = ["lib"]

s.add_dependency "railties", ">= 5.0", "< 7.2"
s.add_dependency "railties", ">= 5.0", "< 7.3"
s.add_dependency "sprockets", ">= 3.0", '< 5'
s.add_dependency "sprockets-rails"
s.add_dependency "tilt"
Expand Down
10 changes: 10 additions & 0 deletions gemfiles/rails_7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
source "https://rubygems.org"

gem "rails", "~> 7.2.0"
gem "slim-rails"
gem "haml"
gem "kramdown"

gem 'coveralls', require: false

gemspec :path => ".././"
2 changes: 1 addition & 1 deletion lib/angular-rails-templates/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module AngularRailsTemplates
VERSION = '1.2.1'
VERSION = '1.2.2'
end

0 comments on commit efa901f

Please sign in to comment.