Skip to content

Commit

Permalink
Allow Thor 0.15 and 1.0, to be released shortly
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhuda committed Apr 28, 2012
1 parent 1823d53 commit ad2c5ea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion railties/railties.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ad2c5ea

Please sign in to comment.