Sha256: 128d082d1c48318f35d1ddc8e523cc267fcbc7715dfd152b4f2f22cbacf182d3

Contents?: true

Size: 749 Bytes

Versions: 96

Compression:

Stored size: 749 Bytes

Contents

class StormOnDemand < Fog::Bin
  class << self

    def class_for(key)
      case key
      when :compute
        Fog::Compute::StormOnDemand
      else 
        raise ArgumentError, "Unsupported #{self} service: #{key}"
      end
    end

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        when :compute
          Fog::Logger.warning("StormOnDemand[:compute] is not recommended, use Compute[:stormondemand] for portability")
          Fog::Compute.new(:provider => 'StormOnDemand')
        else
          raise ArgumentError, "Unrecognized service: #{key.inspect}"
        end
      end
      @@connections[service]
    end

    def services
      Fog::StormOnDemand.services
    end

  end
end

Version data entries

96 entries across 96 versions & 17 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/bin/stormondemand.rb
fog-1.20.0 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/bin/stormondemand.rb
fog-1.19.0 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/bin/stormondemand.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/bin/stormondemand.rb