Sha256: efca455944071d703754032d70f58b1ec243dbefa759f56323fbc0d95ce86bee
Contents?: true
Size: 476 Bytes
Versions: 24
Compression:
Stored size: 476 Bytes
Contents
require 'trollop' module SimpleDeploy module CLI class Environments include Shared def environments @opts = Trollop::options do version SimpleDeploy::VERSION banner <<-EOS List environments simple_deploy environments EOS opt :help, "Display Help" end SimpleDeploy.environments.keys.each { |e| puts e } end def command_summary 'List environments' end end end end
Version data entries
24 entries across 24 versions & 1 rubygems