-
Notifications
You must be signed in to change notification settings - Fork 313
add hash slice using IndifferentAccess #531
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
d4d7459
to
300cb88
Compare
|
wrapped slice with About the rubocop issue, since config includes
I just did the same to Module:
It makes sense? |
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.
LGTM
@@ -36,6 +36,7 @@ Any violations of this scheme are considered to be bugs. | |||
### Fixed | |||
|
|||
* [#516](https://github.com/hashie/hashie/issues/516): Fixed `NoMethodError` raised when including `Hashie::Extensions::Mash::SymbolizeKeys` and `Hashie::Extensions::SymbolizeKeys` in mashes/hashes with non string or symbol keys - [@carolineartz](https://github.com/carolineartz). | |||
* [#531](https://github.com/hashie/hashie/pull/531): Fixed [slice doesn't work using symbols](https://github.com/hashie/hashie/issues/529) using hash with `IndifferentAccess` extension - [@gnomex](https://github.com/gnomex) |
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.
This is missing a period in the end to match other lines, please.
Merged via 792714b. |
Add hash#slice using
IndifferentAccess
extension to fix #529I just not sure if I need to add
with_minimum_ruby('2.5.0')
, because it is only available from version 2.5.Example