Class: Linode
Class Method Summary collapse
Methods inherited from Fog::Bin
Class Method Details
.[](service) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/fog/linode/bin.rb', line 4 def [](service) @@connections ||= Hash.new do |hash, key| hash[key] = case key when :compute Fog::Linode::Compute.new when :linode location = caller.first warning = "[yellow][WARN] Linode[:linode] is deprecated, use Linode[:compute] instead[/]" warning << " [light_black](" << location << ")[/] " Formatador.display_line(warning) Fog::Linode::Compute.new end end @@connections[service] end |
.services ⇒ Object
20 21 22 |
# File 'lib/fog/linode/bin.rb', line 20 def services [:compute] end |