Sha256: c137e80f61e30f938cf12773e868d4df580e36b6d8884d91a649cd21ad9032ff
Contents?: true
Size: 977 Bytes
Versions: 22
Compression:
Stored size: 977 Bytes
Contents
require '3scale_toolbox/commands/remote_command/remote_add' require '3scale_toolbox/commands/remote_command/remote_remove' require '3scale_toolbox/commands/remote_command/remote_rename' require '3scale_toolbox/commands/remote_command/remote_list' module ThreeScaleToolbox module Commands module RemoteCommand class RemoteCommand < Cri::CommandRunner include ThreeScaleToolbox::Command 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 def run puts command.help end add_subcommand(RemoteAddSubcommand) add_subcommand(RemoteRemoveSubcommand) add_subcommand(RemoteRenameSubcommand) add_subcommand(RemoteListSubcommand) end end end end
Version data entries
22 entries across 22 versions & 1 rubygems