Class: Glesys
Class Method Summary collapse
Methods inherited from Fog::Bin
Class Method Details
permalink .[](service) ⇒ Object
[View source]
12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/fog/bin/glesys.rb', line 12 def [](service) @@connections ||= Hash.new do |hash, key| hash[key] = case key when :compute Fog::Logger.warning("Glesys[:compute] is not recommended, use Compute[:glesys] for portability") Fog::Compute.new(:provider => 'Glesys') else raise ArgumentError, "Unrecognized service: #{service}" end end @@connections[service] end |
permalink .class_for(key) ⇒ Object
[View source]
3 4 5 6 7 8 9 10 |
# File 'lib/fog/bin/glesys.rb', line 3 def class_for(key) case key when :compute Fog::Compute::Glesys else raise ArgumentError, "Unsupported #{self} service: #{key}" end end |
permalink .services ⇒ Object
[View source]
25 26 27 |
# File 'lib/fog/bin/glesys.rb', line 25 def services Fog::Glesys.services end |