Sha256: bd574c73665ea9b2108952d1102d413daa3ca126327e279e5abcb7fc61fcdff6

Contents?: true

Size: 540 Bytes

Versions: 2

Compression:

Stored size: 540 Bytes

Contents

require 'cri'
require '3scale_toolbox/base_command'
require '3scale_toolbox/commands/update_command/update_service'

module ThreeScaleToolbox
  module Commands
    module UpdateCommand
      extend ThreeScaleToolbox::Command
      def self.command
        Cri::Command.define do
          name        'update'
          usage       'update <command> [options]'
          summary     '3scale update command'
          description '3scale update command.'
        end
      end
      add_subcommand(UpdateServiceSubcommand)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
3scale_toolbox-0.5.1 lib/3scale_toolbox/commands/update_command.rb
3scale_toolbox-0.5.0 lib/3scale_toolbox/commands/update_command.rb