module TolerateJson

Constants

VERSION

Public Class Methods

pretty_print_json(json, indentation_character=nil) click to toggle source
# File lib/tolerate_json.rb, line 53
def self.pretty_print_json(json, indentation_character=nil)
  TolerateJson::Formatter.format_json_string(json, indentation_character)
end

Public Instance Methods

pretty_print_json(json, indentation_character=nil) click to toggle source
# File lib/tolerate_json.rb, line 49
def pretty_print_json(json, indentation_character=nil)
  TolerateJson::Formatter.format_json_string(json, indentation_character)
end