From 5f77f847cd01d04281a9a6d94e1b4f60677a2dcd Mon Sep 17 00:00:00 2001 From: Eric Thompson Date: Tue, 11 Apr 2017 13:46:41 -0700 Subject: [PATCH] (QA-2941) re-enable rake 12 * acceptance previously showed a bug we had against rake 12 * really rake 12 just clarified how to use arguments to tasks so they aren't confused with hashes: https://github.com/ruby/rake/pull/171 --- rototiller.gemspec | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rototiller.gemspec b/rototiller.gemspec index c1e7257..9d06d4b 100644 --- a/rototiller.gemspec +++ b/rototiller.gemspec @@ -15,7 +15,5 @@ Gem::Specification.new do |s| 'README.md', 'lib/**/*', 'docs/**/*'] s.required_ruby_version = '>= 1.9.3' - # RAKE_VER=0.9, 10.0, 11.0 - # don't use 11.0.0, which probably installs 11.0.1 which has issues - s.add_runtime_dependency 'rake', '< 12.0.0' + s.add_runtime_dependency 'rake' end