Sha256: 4e1b82785990bacd812ae134936fe430424cd5c00cdd6cd99cbb0bc0a36a5c5b

Contents?: true

Size: 758 Bytes

Versions: 7

Compression:

Stored size: 758 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
          Formatador.display_line("[yellow][WARN] StormOnDemand[:compute] is deprecated, use Compute[:stormondemand] instead[/]")
          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

7 entries across 7 versions & 3 rubygems

Version Path
brightbox-cli-0.13.1 lib/brightbox-cli/vendor/fog/lib/fog/bin/stormondemand.rb
brightbox-cli-0.13.0 lib/brightbox-cli/vendor/fog/lib/fog/bin/stormondemand.rb
fog-0.11.0 lib/fog/bin/stormondemand.rb
fog-0.10.0 lib/fog/bin/stormondemand.rb
fog4encbs-0.9.0.1 lib/fog/bin/stormondemand.rb
fog4encbs-0.9.0 lib/fog/bin/stormondemand.rb
fog-0.9.0 lib/fog/bin/stormondemand.rb