Sha256: 811c51ed670ce3dc4cc90bd3a50c8c6b23ca41e50015b99f3409c0c7b1c5bfc4

Contents?: true

Size: 286 Bytes

Versions: 1

Compression:

Stored size: 286 Bytes

Contents

module VirtualMonkey
  module Command
    def self.list
      options = Trollop::options do
        opt :tags, "List deployment set tags", :type => :string, :required => true
      end
      DeploymentMonk.new(options[:tags]).deployments.each { |d| puts d.nickname }
    end
  end 
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
virtualmonkey-0.0.1 lib/virtualmonkey/command/list.rb