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