0.0
No commit activity in last 3 years
No release in over 3 years
Pre-parser for JSON that removes C/C++ style comments and whitespace from formatted JSON, similar to https://github.com/getify/JSON.minify.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 10.1
~> 2.14

Runtime

 Project Readme

JsonMinify

Gem Version

JSON.minify implementation - rationale is here: https://github.com/getify/JSON.minify

Though comments are not officially part of the JSON standard, this post from Douglas Crockford back in late 2005 helps explain the motivation behind this project.

http://tech.groups.yahoo.com/group/json/message/152

"A JSON encoder MUST NOT output comments. A JSON decoder MAY accept and ignore comments."

Installation

Add this line to your application's Gemfile:

gem 'json_minify'

And then execute:

$ bundle

Or install it yourself as:

$ gem install json_minify

Usage

Use with MultiJson,

MultiJson.minify("{ }") #=> "{}"

MultiJson.minify("{ /* comment */ }") #=> "{}"


MultiJson.load("{ }", minify: true) #=> {}

MultiJson.load("{ /* comment */ }", minify: true) #=> {}

Use on the command-line:

$ cat file.json | json_minify

$ json_minify file.json
$ json_minify file.json --pretty-print

$ json_minify --help
$ json_minify --version

Contributing

  1. Fork it (https://github.com/lumberj/json-minify-rb)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request