joshbuddy / jsonpath

Ruby implementation of http://goessner.net/articles/JsonPath/
MIT License
447 stars 72 forks source link

#162 : symbolize_keys option doesn't work as the README says #165

Closed anupama-kumari closed 1 year ago

anupama-kumari commented 1 year ago

Currently it uses a symbolize_keys send in the on options, and ignore if its sent during the initialization. So in this PR using this params send during initialization as fallback option.

Means first checking if on params has symbolize_keys, else checking in opts send during the initialization.

joshbuddy commented 1 year ago

@anupama-kumari thanks for this, looks good!