Allow unwrap option to whitelist keys. #54
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Recently this PR was merged to allow unwrapping of arrays. This capability is awesome and I am excited it landed. However, I recently had a use case that required me to unwrap only certain keys. These changes support whitelisting keys to unwrap. The option supports either an array of keys (symbols) to unwrap or a boolean value for wholesale unwrap/wrap behavior.
Unwrapping Arrays. You can specify an optional
unwrap
argument to modify the default Arraybehavior.
unwrap
accepts a boolean flag (false by default) or an Array whitelist of keys to unwrap.Thanks for this awesome Gem. If you have any concerns with overloading this option I am open to any suggestions. I added some doc to the readme, I included a section on the new(er)
key_converter
functionality as it is something I found useful that wasn't included.