File tree Expand file tree Collapse file tree 5 files changed +18
-3
lines changed
lib/angular-rails-templates Expand file tree Collapse file tree 5 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 25
25
- rails_5.2_sprockets4.gemfile
26
26
- rails_6.0.gemfile
27
27
- rails_6.1.gemfile
28
+ - rails_7.0.gemfile
28
29
# - rails_head.gemfile
29
30
# - rails_head_sprockets4.gemfile
31
+ exclude :
32
+ - gemfile : rails_7.0.gemfile
33
+ ruby : 2.6
30
34
env :
31
35
BUNDLE_GEMFILE : ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}
32
36
AWS_REGION : us-east1
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Adds your HTML templates into Angular's `$templateCache` using Rails asset pipel
13
13
14
14
Branch | Build Status
15
15
------------|---------
16
- master | [ ![ Build Status] ( https://travis-ci.org /pitr/angular-rails-templates.png?branch=master )] ( https://travis-ci.org /pitr/angular-rails-templates )
16
+ master | [ ![ Build Status] ( https://github.com /pitr/angular-rails-templates/workflows/build/badge.svg )] ( https://github.com /pitr/angular-rails-templates )
17
17
0-x-stable | [ ![ Build Status] ( https://travis-ci.org/pitr/angular-rails-templates.png?branch=0-x-stable )] ( https://travis-ci.org/pitr/angular-rails-templates )
18
18
19
19
It removes the need for AJAX calls to retrieve the templates (or for you to manually set them into the DOM).
Original file line number Diff line number Diff line change @@ -16,8 +16,9 @@ Gem::Specification.new do |s|
16
16
17
17
s . require_paths = [ "lib" ]
18
18
19
- s . add_dependency "railties" , ">= 5.0" , "< 7"
19
+ s . add_dependency "railties" , ">= 5.0" , "< 7.1 "
20
20
s . add_dependency "sprockets" , ">= 3.0" , '< 5'
21
+ s . add_dependency "sprockets-rails"
21
22
s . add_dependency "tilt"
22
23
23
24
# There is a deprecation warning indicating the build will fail with Minitest 6
Original file line number Diff line number Diff line change
1
+ source "https://rubygems.org"
2
+
3
+ gem "rails", "~> 7.0.2"
4
+ gem "slim-rails"
5
+ gem "haml"
6
+ gem "kramdown"
7
+
8
+ gem 'coveralls', require: false
9
+
10
+ gemspec :path => ".././"
Original file line number Diff line number Diff line change 1
1
module AngularRailsTemplates
2
- VERSION = '1.1 .0'
2
+ VERSION = '1.2 .0'
3
3
end
You can’t perform that action at this time.
0 commit comments