Module: BuildDog
- Defined in:
- lib/builddog.rb,
lib/builddog/version.rb,
lib/builddog/providers.rb
Constant Summary collapse
- VERSION =
"0.0.2"
Class Method Summary collapse
Class Method Details
.print ⇒ Object
7 8 9 |
# File 'lib/builddog.rb', line 7 def self.print puts "#{VERSION}" end |
.providers(options) ⇒ Object
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/builddog/providers.rb', line 8 def self.providers ( ) case [:provider] when "vsphere" vsphere when "aws" aws else puts "unknown provider" end end |