Sha256: 9bca0c3c5fca8b63d77dff048c361f22100202af813c2deec3cef90b66bdac35

Contents?: true

Size: 600 Bytes

Versions: 4

Compression:

Stored size: 600 Bytes

Contents

require '3scale_toolbox/commands/update_command/update_service'

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

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
3scale_toolbox-0.15.0 lib/3scale_toolbox/commands/update_command.rb
3scale_toolbox-0.14.0 lib/3scale_toolbox/commands/update_command.rb
3scale_toolbox-0.13.0 lib/3scale_toolbox/commands/update_command.rb
3scale_toolbox-0.12.4 lib/3scale_toolbox/commands/update_command.rb