-
Notifications
You must be signed in to change notification settings - Fork 657
Valid for rake earlier than v 12.1 #418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
1 similar comment
@@ -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", "< 12.0"]) | |||
s.add_runtime_dependency(%q<rake>, [">= 10.4", "< 12.1"]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just curious, why not "< 13.0"
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That seems like a good idea.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
12 -> 13 should break a ton of stuff if they're using semantic versioning. I tested it with 12, but I can't be sure 13 will work out of the box until I get my hands on that version and can test.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I mean less than 13 like "< 13"
but this merged already anyway 👍
@@ -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", "< 12.0"]) | |||
s.add_runtime_dependency(%q<rake>, [">= 10.4", "< 12.1"]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That seems like a good idea.
Current Rake is v 12.0.0 and Gem won't install