module ThreeScaleToolbox::Commands::ServiceCommand

Public Class Methods

command() click to toggle source
# File lib/3scale_toolbox/commands/service_command.rb, line 15
def self.command
  Cri::Command.define do
    name        'service'
    usage       'service <sub-command> [options]'
    summary     'services super command'
    description 'Manage your services'

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