module Jsonpretty

Public Instance Methods

jp() click to toggle source
# File lib/usd.rb, line 309
def jp
  # return in json_pretty
  JSON.pretty_generate(self)
end
jpp() click to toggle source
# File lib/usd.rb, line 313
def jpp
  # print in json_pretty
  puts JSON.pretty_generate(self)
end