0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
A JSON formatter written in pure Ruby that works "good enough" and has no gem dependencies. 60% of the time, it works every time.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
>= 2.10
 Project Readme

Build Status

TolerateJson

A JSON formatter written in pure Ruby that works "good enough" and has no gem dependencies. 60% of the time, it works every time.

Description

Tolerate_json is a pure-ruby Json formatter that has no outside gem dependencies. It is meant to make JSON nice to look at without requiring a full-blown json parsing library.

It is a "90%" solution: it works in 90% of use cases, but will almost certainly fall down on complicated examples. When you start getting to that point, it's time to use a real json parsing engine.

Installation

Either add gem 'tolerate_json' to your application's Gemfile and do bundle install, or install it manually with gem install tolerate_json

Usage

Include the module

  require 'rubygems' # optional on 1.9.3 and up

  require 'tolerate_json'

  include TolerateJson

  puts pretty_print_json('{"foo":{"bar":"baz"}}')

  # Prints:
  #
  # {
  #    "foo":{
  #      "bar":"baz"
  #    }
  # }
  #

Use it directly from the class

  require 'rubygems' # optional on 1.9.3 and up

  require 'tolerate_json'

  puts TolerateJson.pretty_print_json('{"foo":{"bar":"baz"}}')

  # Prints:
  #
  # {
  #    "foo":{
  #      "bar":"baz"
  #    }
  # }
  #

Contributing

  1. Fork it
  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