aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2015-01-12 15:30:22 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2015-01-12 15:32:33 -0200
commitda175a2b46c4db59cd8c4bd0b9c6c613651e3db0 (patch)
tree09c82fa0c39ac806fa2ac56f82827e6b4e826711
parenteb7b9738c5fea9e42ad9555cbd4ae776a6b36680 (diff)
downloadrails-da175a2b46c4db59cd8c4bd0b9c6c613651e3db0.tar.gz
rails-da175a2b46c4db59cd8c4bd0b9c6c613651e3db0.tar.bz2
rails-da175a2b46c4db59cd8c4bd0b9c6c613651e3db0.zip
Relax Rack dependency
Rack is very carefully released, we should be able to upgrade minor versions without much effort. We are a bunch of Rails core who are also Rack core members so there won't be any issue with that. And in case there's something wrong, we should fix on both sides. Even though, doesn't seem like we will have a 1.7 version, this will be useful as an example for when we go with Rack 2.0. We should ~> 2.0.
-rw-r--r--actionpack/actionpack.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/actionpack.gemspec b/actionpack/actionpack.gemspec
index f83823dd75..d9b23ad4a9 100644
--- a/actionpack/actionpack.gemspec
+++ b/actionpack/actionpack.gemspec
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
s.add_dependency 'activesupport', version
- s.add_dependency 'rack', '~> 1.6.0'
+ s.add_dependency 'rack', '~> 1.6'
s.add_dependency 'rack-test', '~> 0.6.2'
s.add_dependency 'rails-html-sanitizer', '~> 1.0', '>= 1.0.1'
s.add_dependency 'rails-dom-testing', '~> 1.0', '>= 1.0.5'