class ThreeScaleToolbox::Commands::RemoteCommand::RemoteCommand

Public Class Methods

command() click to toggle source
# File lib/3scale_toolbox/commands/remote_command.rb, line 12
def self.command
  Cri::Command.define do
    name        'remote'
    usage       'remote <sub-command> [options]'
    summary     'remotes super command'
    description 'Manage your remotes'
    runner RemoteCommand
  end
end

Public Instance Methods

run() click to toggle source
# File lib/3scale_toolbox/commands/remote_command.rb, line 22
def run
  puts command.help
end