An implementation of RFC-6901 and RFC-6902
Add this to your application's shard.yml
:
dependencies:
json-tools:
github: impatienttraveller/json-tools
require "json-tools"
Once you have a JSON::Any
object in memory you can address any value using the Pointer
class:
json : JSON::Any = ...
val = Json::Tools::Pointer.new("/foo/0/bar").eval(json)
JSON object can be patched by using the Patch
class:
patch : JSON::Any = ...
json : JSON::Any = ...
patched_json = Json::Tools::Patch.new(patch).apply(json)
This creates a copy of the passed JSON object to work with and the original object is not altered.
Please raise a GitHub issue and document the commit with the following format:
[issue-x] Description
- Fork it (https://github.com/impatienttraveller/json-tools/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- ddcprg Daniel del Castillo - creator, maintainer