Bump Rack to 1.5.x, but not 1.6 since it doesn't work on 1.8.7:

https://travis-ci.org/sinatra/sinatra/jobs/67398284#L155

/cc #1009
This commit is contained in:
Zachary Scott 2015-06-19 09:08:46 -04:00
parent 18353f8e0f
commit 83b06c0ab4
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ Gem::Specification.new 'sinatra', Sinatra::VERSION do |s|
s.extra_rdoc_files = s.files.select { |p| p =~ /^README/ } << 'LICENSE' s.extra_rdoc_files = s.files.select { |p| p =~ /^README/ } << 'LICENSE'
s.rdoc_options = %w[--line-numbers --inline-source --title Sinatra --main README.rdoc --encoding=UTF-8] s.rdoc_options = %w[--line-numbers --inline-source --title Sinatra --main README.rdoc --encoding=UTF-8]
s.add_dependency 'rack', '~> 1.4' s.add_dependency 'rack', '~> 1.5', '>= 1.5.4', '< 1.6'
s.add_dependency 'tilt', '>= 1.3', '< 3' s.add_dependency 'tilt', '>= 1.3', '< 3'
s.add_dependency 'rack-protection', '~> 1.4' s.add_dependency 'rack-protection', '~> 1.4'
end end