Sha256: f0bffe349dcc8add51097ee82ccb2620bf6a79fd96b723f34b9cc57fc15682f0

Contents?: true

Size: 695 Bytes

Versions: 7

Compression:

Stored size: 695 Bytes

Contents

class Voxel < Fog::Bin
  class << self

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

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

    def services
      Fog::Voxel.services
    end

  end
end

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/bin/voxel.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/bin/voxel.rb
fog-1.1.2 lib/fog/bin/voxel.rb
fog_tractical-1.1.4 lib/fog/bin/voxel.rb
fog_tractical-1.1.3 lib/fog/bin/voxel.rb
fog-1.1.1 lib/fog/bin/voxel.rb
fog-1.1.0 lib/fog/bin/voxel.rb