lib/3scale_toolbox/commands.rb in 3scale_toolbox-0.9.0 vs lib/3scale_toolbox/commands.rb in 3scale_toolbox-0.10.0
- old
+ new
@@ -3,18 +3,22 @@
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'
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,
].freeze
end
end