module ThreeScaleToolbox::Commands::MethodsCommand

Public Class Methods

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

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