-
Notifications
You must be signed in to change notification settings - Fork 152
Loosen the activesupport dependency #268
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
Loosen the activesupport dependency #268
Conversation
Generated by 🚫 danger |
41b8d2c
to
93cc316
Compare
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.
thanks @anakinj
grape-entity.gemspec
Outdated
@@ -19,7 +19,7 @@ Gem::Specification.new do |s| | |||
s.rubyforge_project = 'grape-entity' | |||
|
|||
s.add_runtime_dependency 'multi_json', '>= 1.3.2' | |||
s.add_runtime_dependency 'activesupport', '>= 5.0.0' | |||
s.add_runtime_dependency 'activesupport' |
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.
please change instead to: > 4
, else it would fail this spec./spec/grape_entity/hash_spec.rb:6 # Grape::Entity except option for nested entity
) with < 4
93cc316
to
8a1afa6
Compare
8a1afa6
to
2d1019a
Compare
I still changed this version to >=4.0.0 to be more schematically pretty, and allow the 4.0.0 version of activesupport :) |
No description provided.