Sha256: af7e6366b9151ae6d93e6fdf538ed038f9cbe4b2e5219667d79a3f3a58a0fa17

Contents?: true

Size: 532 Bytes

Versions: 2

Compression:

Stored size: 532 Bytes

Contents

require 'cri'
require '3scale_toolbox/base_command'
require '3scale_toolbox/commands/import_command/import_csv'

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

Version data entries

2 entries across 2 versions & 1 rubygems

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