Sha256: 3ec90c6c51508fa1c92bb73c0d55107b553cf4a6aadc2f5afb4ad9803dc63646

Contents?: true

Size: 812 Bytes

Versions: 36

Compression:

Stored size: 812 Bytes

Contents

class Joyent < Fog::Bin
  class << self
    def class_for(key)
      case key
      when :compute
        Fog::Compute::Joyent
      when :analytics
        Fog::Joyent::Analytics
      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("Joyent[:compute] is not recommended, use Compute[:joyent] for portability")
          Fog::Compute.new(:provider => 'Joyent')
        when :analytics
          Fog::Joyent::Analytics.new
        else
          raise ArgumentError, "Unrecognized service: #{key.inspect}"
        end
      end
      @@connections[service]
    end

    def services
      Fog::Joyent.services
    end
  end
end

Version data entries

36 entries across 34 versions & 6 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-joyent-0.0.1/lib/fog/bin/joyent.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-joyent-0.0.1/lib/fog/bin/joyent.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-joyent-0.0.1/lib/fog/bin/joyent.rb
fog-joyent-0.0.1 lib/fog/bin/joyent.rb
fog-1.40.0 lib/fog/bin/joyent.rb
fog-1.39.0 lib/fog/bin/joyent.rb
fog-1.38.0 lib/fog/bin/joyent.rb
fog-1.37.0 lib/fog/bin/joyent.rb
fog-1.36.0 lib/fog/bin/joyent.rb
fog-1.35.0 lib/fog/bin/joyent.rb
fog-2.0.0.pre.0 lib/fog/bin/joyent.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/bin/joyent.rb
fog-1.34.0 lib/fog/bin/joyent.rb
fog-1.33.0 lib/fog/bin/joyent.rb
fog-1.32.0 lib/fog/bin/joyent.rb
fog-1.31.0 lib/fog/bin/joyent.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/bin/joyent.rb
fog-1.30.0 lib/fog/bin/joyent.rb
fog-1.29.0 lib/fog/bin/joyent.rb
fog-1.28.0 lib/fog/bin/joyent.rb