Commit 33f13336 by Victor Costan

Allow rake 11 in annotate.gemspec.

parent 47e1b1ec
......@@ -26,10 +26,10 @@ Gem::Specification.new do |s|
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rake>, ["~> 10.4"])
s.add_runtime_dependency(%q<rake>, [">= 10.4", "< 12.0"])
s.add_runtime_dependency(%q<activerecord>, [">= 3.2", "< 6.0"])
else
s.add_dependency(%q<rake>, ["~> 10.4"])
s.add_dependency(%q<rake>, [">= 10.4", "< 12.0"])
s.add_dependency(%q<activerecord>, [">= 3.2", "< 6.0"])
end
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment