File tree Expand file tree Collapse file tree 4 files changed +1
-46
lines changed Expand file tree Collapse file tree 4 files changed +1
-46
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ matrix:
11
11
gemfile : Gemfile
12
12
- rvm : 2.5.3
13
13
gemfile : gemfiles/rack_edge.gemfile
14
- - rvm : 2.5.3
15
- gemfile : gemfiles/rack_1.5.5.gemfile
16
14
- rvm : 2.5.3
17
15
gemfile : gemfiles/rails_edge.gemfile
18
16
- rvm : 2.5.3
@@ -31,16 +29,12 @@ matrix:
31
29
gemfile : Gemfile
32
30
- rvm : 2.4.5
33
31
gemfile : gemfiles/rack_edge.gemfile
34
- - rvm : 2.4.5
35
- gemfile : gemfiles/rack_1.5.5.gemfile
36
32
- rvm : 2.4.5
37
33
gemfile : gemfiles/rails_5.gemfile
38
34
- rvm : 2.3.8
39
35
gemfile : Gemfile
40
36
- rvm : 2.3.8
41
37
gemfile : gemfiles/rack_edge.gemfile
42
- - rvm : 2.3.8
43
- gemfile : gemfiles/rack_1.5.5.gemfile
44
38
- rvm : 2.3.8
45
39
gemfile : gemfiles/rails_5.gemfile
46
40
- rvm : 2.2.10
Original file line number Diff line number Diff line change @@ -11,10 +11,6 @@ appraise 'rails-5' do
11
11
gem 'rails' , '5.2.1'
12
12
end
13
13
14
- appraise 'rack-1.5.5' do
15
- gem 'rack' , '1.5.5'
16
- end
17
-
18
14
appraise 'rails-edge' do
19
15
gem 'rails' , github : 'rails/rails'
20
16
end
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22
22
unless RUBY_PLATFORM == 'java'
23
23
major , minor , patch = Rack . release . split ( '.' ) . map ( &:to_i )
24
24
patch ||= 0 # rack <= 1.5.2 does not specify patch version
25
- pending 'Rack 1.5.5 or 1.6.1 required' unless major >= 2 || ( major >= 1 && ( ( minor == 5 && patch >= 5 ) || ( minor >= 6 ) ) )
25
+ pending 'Rack 1.5.3 or 1.6.1 required' unless major >= 2 || ( major >= 1 && ( ( minor == 5 && patch >= 3 ) || ( minor >= 6 ) ) )
26
26
end
27
27
28
28
expect ( JSON . parse ( app . call ( env ) [ 2 ] . body . first ) [ 'params_keys' ] ) . to match_array ( 'test' )
You can’t perform that action at this time.
0 commit comments