module ThreeScaleToolbox::Commands::ProductCommand

Public Class Methods

command() click to toggle source
# File lib/3scale_toolbox/commands/product_command.rb, line 9
def self.command
  Cri::Command.define do
    name        'product'
    usage       'product <sub-command> [options]'
    summary     'product super command'
    description 'Product commands'

    run do |_opts, _args, cmd|
      puts cmd.help
    end
  end
end