aboutsummaryrefslogtreecommitdiffstats
path: root/railties/railties.gemspec
diff options
context:
space:
mode:
authortomhuda <tomhuda@tilde.io>2012-04-28 15:55:58 -0700
committertomhuda <tomhuda@tilde.io>2012-04-28 15:55:58 -0700
commitad2c5ea2786817592014fae09934398173c1a7f9 (patch)
tree41ca51d234b290f8edd250b7ef630b8d4caede5a /railties/railties.gemspec
parent1823d53d7bfa1625fb146c56e12a586aac7426fc (diff)
downloadrails-ad2c5ea2786817592014fae09934398173c1a7f9.tar.gz
rails-ad2c5ea2786817592014fae09934398173c1a7f9.tar.bz2
rails-ad2c5ea2786817592014fae09934398173c1a7f9.zip
Allow Thor 0.15 and 1.0, to be released shortly
Diffstat (limited to 'railties/railties.gemspec')
-rw-r--r--railties/railties.gemspec6
1 files changed, 5 insertions, 1 deletions
diff --git a/railties/railties.gemspec b/railties/railties.gemspec
index e84b1d0644..7067253279 100644
--- a/railties/railties.gemspec
+++ b/railties/railties.gemspec
@@ -21,7 +21,11 @@ Gem::Specification.new do |s|
s.rdoc_options << '--exclude' << '.'
s.add_dependency('rake', '>= 0.8.7')
- s.add_dependency('thor', '~> 0.14.6')
+
+ # The current API of the Thor gem (0.14) will remain stable at least until Thor 2.0. Because
+ # Thor is so heavily used by other gems, we will accept Thor's semver guarantee to reduce
+ # the possibility of conflicts.
+ s.add_dependency('thor', '>= 0.14.6', '< 2.0')
s.add_dependency('rdoc', '~> 3.4')
s.add_dependency('activesupport', version)
s.add_dependency('actionpack', version)