Sha256: 9ea4fbb360a081e65c7af695f0e2858257bcece6983ab41e64b541fe332794e6

Contents?: true

Size: 558 Bytes

Versions: 3

Compression:

Stored size: 558 Bytes

Contents

require '3scale_toolbox/commands/product_command/copy_command'

module ThreeScaleToolbox
  module Commands
    module ProductCommand
      include ThreeScaleToolbox::Command
      def self.command
        Cri::Command.define do
          name        'product'
          usage       'product <sub-command> [options]'
          summary     'product super command'
          description 'Product commands'

          run do |_opts, _args, cmd|
            puts cmd.help
          end
        end
      end
      add_subcommand(CopySubcommand)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
3scale_toolbox-0.17.1 lib/3scale_toolbox/commands/product_command.rb
3scale_toolbox-0.17.0 lib/3scale_toolbox/commands/product_command.rb
3scale_toolbox-0.16.0 lib/3scale_toolbox/commands/product_command.rb