File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ matrix:
12
12
- rvm : 2.5.3
13
13
gemfile : gemfiles/rack_edge.gemfile
14
14
- rvm : 2.5.3
15
- gemfile : gemfiles/rack_1.5.2 .gemfile
15
+ gemfile : gemfiles/rack_1.5.5 .gemfile
16
16
- rvm : 2.5.3
17
17
gemfile : gemfiles/rails_edge.gemfile
18
18
- rvm : 2.5.3
@@ -32,15 +32,15 @@ matrix:
32
32
- rvm : 2.4.5
33
33
gemfile : gemfiles/rack_edge.gemfile
34
34
- rvm : 2.4.5
35
- gemfile : gemfiles/rack_1.5.2 .gemfile
35
+ gemfile : gemfiles/rack_1.5.5 .gemfile
36
36
- rvm : 2.4.5
37
37
gemfile : gemfiles/rails_5.gemfile
38
38
- rvm : 2.3.8
39
39
gemfile : Gemfile
40
40
- rvm : 2.3.8
41
41
gemfile : gemfiles/rack_edge.gemfile
42
42
- rvm : 2.3.8
43
- gemfile : gemfiles/rack_1.5.2 .gemfile
43
+ gemfile : gemfiles/rack_1.5.5 .gemfile
44
44
- rvm : 2.3.8
45
45
gemfile : gemfiles/rails_5.gemfile
46
46
- rvm : 2.2.10
Original file line number Diff line number Diff line change 2
2
3
3
source 'https://rubygems.org'
4
4
5
- gem 'rack', '1.5.2 '
5
+ gem 'rack', '1.5.5 '
6
6
7
7
group :development, :test do
8
8
gem 'bundler'
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.3 or 1.6.1 required' unless major >= 2 || ( major >= 1 && ( ( minor == 5 && patch >= 3 ) || ( minor >= 6 ) ) )
25
+ pending 'Rack 1.5.5 or 1.6.1 required' unless major >= 2 || ( major >= 1 && ( ( minor == 5 && patch >= 5 ) || ( 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