File tree 4 files changed +40
-0
lines changed
4 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ gemfile:
18
18
- gemfiles/rails_5_no_sprockets_webpacker_1_x.gemfile
19
19
- gemfiles/rails_5_no_sprockets_webpacker_2.gemfile
20
20
- gemfiles/rails_5_no_sprockets_webpacker_3.gemfile
21
+ - gemfiles/rails-5.1_no_sprockets_webpacker_3.gemfile
22
+ - gemfiles/rails-5.2_no_sprockets_webpacker_3.gemfile
21
23
# These don't have webpacker:
22
24
- gemfiles/rails_4.2_sprockets_2.gemfile
23
25
- gemfiles/rails_4.2_sprockets_3.gemfile
Original file line number Diff line number Diff line change 12
12
13
13
# no_sprockets is a magical name from sprockets_helper.rb in test to
14
14
# load in certain tests or not.
15
+ appraise 'rails-5.2_no_sprockets_webpacker_3' do
16
+ gem 'rails' , '~> 5.2.0'
17
+ gem 'webpacker' , '>= 3.0'
18
+ # This ExecJS backend provides stateful context
19
+ # which the default nodejs backend does not
20
+ gem 'mini_racer' , :platforms => :mri
21
+ gem 'therubyrhino' , :platforms => :jruby
22
+ end
23
+
24
+ appraise 'rails-5.1_no_sprockets_webpacker_3' do
25
+ gem 'rails' , '~> 5.1.0'
26
+ gem 'webpacker' , '>= 3.0'
27
+ # This ExecJS backend provides stateful context
28
+ # which the default nodejs backend does not
29
+ gem 'mini_racer' , :platforms => :mri
30
+ gem 'therubyrhino' , :platforms => :jruby
31
+ end
32
+
15
33
appraise 'rails-5_no_sprockets_webpacker_3' do
16
34
gem 'rails' , '~> 5.0.0'
17
35
gem 'webpacker' , '>= 3.0'
Original file line number Diff line number Diff line change
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "rails", "~> 5.1.0"
6
+ gem "webpacker", ">= 3.0"
7
+ gem "mini_racer", platforms: :mri
8
+ gem "therubyrhino", platforms: :jruby
9
+
10
+ gemspec path: "../"
Original file line number Diff line number Diff line change
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "rails", "~> 5.2.0"
6
+ gem "webpacker", ">= 3.0"
7
+ gem "mini_racer", platforms: :mri
8
+ gem "therubyrhino", platforms: :jruby
9
+
10
+ gemspec path: "../"
You can’t perform that action at this time.
0 commit comments