Class: Rackspace

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

Class Method Summary collapse

Methods inherited from Fog::Bin

available?, collections

Class Method Details

.[](service) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/fog/bin/rackspace.rb', line 17

def [](service)
  @@connections ||= Hash.new do |hash, key|
    hash[key] = case key
    when :cdn
      Fog::CDN.new(:provider => 'Rackspace')
    when :compute
      Fog::Compute.new(:provider => 'Rackspace')
    when :dns
      Fog::DNS.new(:provider => 'Rackspace')
    when :files
      location = caller.first
      warning = "[yellow][WARN] Rackspace[:files] is deprecated, use Rackspace[:storage] instead[/]"
      warning << " [light_black](" << location << ")[/] "
      Formatador.display_line(warning)
      Fog::Storage.new(:provider => 'Rackspace')
    when :servers
      location = caller.first
      warning = "[yellow][WARN] Rackspace[:servers] is deprecated, use Rackspace[:compute] instead[/]"
      warning << " [light_black](" << location << ")[/] "
      Formatador.display_line(warning)
      Fog::Compute.new(:provider => Rackspace)
    when :storage
      Fog::Storage.new(:provider => 'Rackspace')
    else
      raise ArgumentError, "Unrecognized service: #{service}"
    end
  end
  @@connections[service]
end

.class_for(key) ⇒ Object



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

def class_for(key)
  case key
  when :cdn
    Fog::Rackspace::CDN
  when :compute, :servers
    Fog::Rackspace::Compute
  when :files, :storage
    Fog::Rackspace::Storage
  else 
    raise ArgumentError, "Unrecognized service: #{key}"
  end
end

.servicesObject



47
48
49
# File 'lib/fog/bin/rackspace.rb', line 47

def services
  [:cdn, :compute, :storage]
end