Sha256: cd9ba38296b8e37cdf84532e27dbb083c7ee78b8572c7eacf5965f2cb6b81be3

Contents?: true

Size: 605 Bytes

Versions: 31

Compression:

Stored size: 605 Bytes

Contents

class GoGrid < Fog::Bin
  class << self

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        when :compute
          Fog::GoGrid::Compute.new
        when :servers
          location = caller.first
          warning = "[yellow][WARN] GoGrid[:servers] is deprecated, use GoGrid[:compute] instead[/]"
          warning << " [light_black](" << location << ")[/] "
          Formatador.display_line(warning)
          Fog::GoGrid::Compute.new
        end
      end
      @@connections[service]
    end

    def services
      [:compute]
    end

  end
end

Version data entries

31 entries across 31 versions & 2 rubygems

Version Path
fog-0.3.10 lib/fog/go_grid/bin.rb
fog-0.3.9 lib/fog/go_grid/bin.rb
fog-0.3.8 lib/fog/go_grid/bin.rb
fog-0.3.7 lib/fog/go_grid/bin.rb
fog-0.3.6 lib/fog/go_grid/bin.rb
fog-0.3.5 lib/fog/go_grid/bin.rb
fog-0.3.4 lib/fog/go_grid/bin.rb
fog-0.3.3 lib/fog/go_grid/bin.rb
fog-0.3.2 lib/fog/go_grid/bin.rb
fog-0.3.1 lib/fog/go_grid/bin.rb
fog-0.3.0 lib/fog/go_grid/bin.rb