module ThreeScaleToolbox::Commands::MetricsCommand

Public Class Methods

command() click to toggle source
# File lib/3scale_toolbox/commands/metrics_command.rb, line 10
def self.command
  Cri::Command.define do
    name        'metric'
    usage       'metric <sub-command> [options]'
    summary     'metric super command'
    description 'Metric commands'

    run do |_opts, _args, cmd|
      puts cmd.help
    end
  end
end