Sha256: e69780ab6af2122e2cf9ba4934780d448e8e36475292837aed3bd60d03288528
Contents?: true
Size: 893 Bytes
Versions: 20
Compression:
Stored size: 893 Bytes
Contents
require '3scale_toolbox/commands/methods_command/create_command' require '3scale_toolbox/commands/methods_command/list_command' require '3scale_toolbox/commands/methods_command/apply_command' require '3scale_toolbox/commands/methods_command/delete_command' module ThreeScaleToolbox module Commands module MethodsCommand include ThreeScaleToolbox::Command 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 add_subcommand(Create::CreateSubcommand) add_subcommand(List::ListSubcommand) add_subcommand(Apply::ApplySubcommand) add_subcommand(Delete::DeleteSubcommand) end end end
Version data entries
20 entries across 20 versions & 1 rubygems