class ThreeScaleToolbox::CLI::JsonPrinter
Public Instance Methods
print_collection(collection)
click to toggle source
# File lib/3scale_toolbox/cli/json_printer.rb, line 8 def print_collection(collection) puts JSON.pretty_generate(collection) end
print_record(record)
click to toggle source
# File lib/3scale_toolbox/cli/json_printer.rb, line 4 def print_record(record) puts JSON.pretty_generate(record) end