Sha256: 562094131e3af77da15f35b20c0540ae97333f4b90d076991df4e76a43d5e99d

Contents?: true

Size: 570 Bytes

Versions: 9

Compression:

Stored size: 570 Bytes

Contents

require '3scale_toolbox/commands/copy_command/copy_service'

module ThreeScaleToolbox
  module Commands
    module CopyCommand
      include ThreeScaleToolbox::Command
      def self.command
        Cri::Command.define do
          name        'copy'
          usage       'copy <sub-command> [options]'
          summary     'copy super command'
          description 'Copy 3scale entities between tenants'

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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
3scale_toolbox-0.15.0 lib/3scale_toolbox/commands/copy_command.rb
3scale_toolbox-0.14.0 lib/3scale_toolbox/commands/copy_command.rb
3scale_toolbox-0.13.0 lib/3scale_toolbox/commands/copy_command.rb
3scale_toolbox-0.12.4 lib/3scale_toolbox/commands/copy_command.rb
3scale_toolbox-0.12.3 lib/3scale_toolbox/commands/copy_command.rb
3scale_toolbox-0.12.2 lib/3scale_toolbox/commands/copy_command.rb
3scale_toolbox-0.11.0 lib/3scale_toolbox/commands/copy_command.rb
3scale_toolbox-0.10.0 lib/3scale_toolbox/commands/copy_command.rb
3scale_toolbox-0.9.0 lib/3scale_toolbox/commands/copy_command.rb