Extraction of the JSON parsing tools shared between a number of providers in the 'fog' gem.
Add this line to your application's Gemfile:
gem "fog-json"
And then execute:
$ bundle
Or install it yourself as:
$ gem install fog-json
This gem extracts shared code from the fog
gem (http://github.com/fog/fog)
that allows a standard interface to JSON encoding and decoding on top of
MultiJson but with errors support.
- Fork it ( http://github.com/fog/fog-json/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 new Pull Request
This library aims to adhere to Semantic Versioning 2.0.0. Violations of this scheme should be reported as bugs. Specifically, if a minor or patch version is released that breaks backward compatibility, that version should be immediately yanked and/or a new version should be immediately released that restores compatibility. Breaking changes to the public API will only be introduced with new major versions. As a result of this policy, you can (and should) specify a dependency on this gem using the Pessimistic Version Constraint with two digits of precision. For example:
spec.add_dependency "fog-json", "~> 1.0"