Class: GoGrid

Inherits:
Fog::Bin show all
Defined in:
lib/fog/go_grid/bin.rb

Class Method Summary collapse

Methods inherited from Fog::Bin

available?, collections

Class Method Details

.[](service) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/fog/go_grid/bin.rb', line 4

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

.servicesObject



20
21
22
# File 'lib/fog/go_grid/bin.rb', line 20

def services
  [:compute]
end