module ThreeScaleToolbox::Commands::ApplicationCommand
Public Class Methods
command()
click to toggle source
# File lib/3scale_toolbox/commands/application_command.rb, line 11 def self.command Cri::Command.define do name 'application' usage 'application <sub-command> [options]' summary 'application super command' description 'application commands' run do |_opts, _args, cmd| puts cmd.help end end end