Class: Slicehost

Inherits:
Fog::Bin show all
Defined in:
lib/fog/slicehost/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/slicehost/bin.rb', line 4

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

.servicesObject



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

def services
  [:compute]
end