Sha256: 34767ea8dbf9ee0a45d43f29387a6ee79e7adc31ac9e15e9d2cb119d29a40461

Contents?: true

Size: 594 Bytes

Versions: 9

Compression:

Stored size: 594 Bytes

Contents

require '3scale_toolbox/commands/update_command/service_command'

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

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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
3scale_toolbox-0.19.3 lib/3scale_toolbox/commands/update_command.rb
3scale_toolbox-0.19.2 lib/3scale_toolbox/commands/update_command.rb
3scale_toolbox-0.19.1 lib/3scale_toolbox/commands/update_command.rb
3scale_toolbox-0.19.0 lib/3scale_toolbox/commands/update_command.rb
3scale_toolbox-0.18.3 lib/3scale_toolbox/commands/update_command.rb
3scale_toolbox-0.18.2 lib/3scale_toolbox/commands/update_command.rb
3scale_toolbox-0.18.0 lib/3scale_toolbox/commands/update_command.rb
3scale_toolbox-0.17.1 lib/3scale_toolbox/commands/update_command.rb
3scale_toolbox-0.17.0 lib/3scale_toolbox/commands/update_command.rb