Sha256: 762e26b3798d57b1a947e6c74de4239231f2a4a85d49934424b98a9acb6d34b0
Contents?: true
Size: 1.56 KB
Versions: 7
Compression:
Stored size: 1.56 KB
Contents
require '3scale_toolbox/commands/3scale_command' require '3scale_toolbox/commands/help_command' require '3scale_toolbox/commands/copy_command' require '3scale_toolbox/commands/import_command' require '3scale_toolbox/commands/update_command' require '3scale_toolbox/commands/remote_command' require '3scale_toolbox/commands/plans_command' require '3scale_toolbox/commands/metrics_command' require '3scale_toolbox/commands/methods_command' require '3scale_toolbox/commands/service_command' require '3scale_toolbox/commands/activedocs_command' require '3scale_toolbox/commands/account_command' require '3scale_toolbox/commands/proxy_config_command' require '3scale_toolbox/commands/policy_registry_command' require '3scale_toolbox/commands/application_command' module ThreeScaleToolbox module Commands BUILTIN_COMMANDS = [ # :nodoc: ThreeScaleToolbox::Commands::HelpCommand, ThreeScaleToolbox::Commands::CopyCommand, ThreeScaleToolbox::Commands::ImportCommand, ThreeScaleToolbox::Commands::UpdateCommand, ThreeScaleToolbox::Commands::RemoteCommand::RemoteCommand, ThreeScaleToolbox::Commands::PlansCommand, ThreeScaleToolbox::Commands::MetricsCommand, ThreeScaleToolbox::Commands::MethodsCommand, ThreeScaleToolbox::Commands::ServiceCommand, ThreeScaleToolbox::Commands::ActiveDocsCommand, ThreeScaleToolbox::Commands::AccountCommand, ThreeScaleToolbox::Commands::ProxyConfigCommand, ThreeScaleToolbox::Commands::PolicyRegistryCommand, ThreeScaleToolbox::Commands::ApplicationCommand, ].freeze end end
Version data entries
7 entries across 7 versions & 1 rubygems