# File lib/fog/bin/bluebox.rb, line 15 def [](service) @@connections ||= Hash.new do |hash, key| hash[key] = case key when :compute Formatador.display_line("[yellow][WARN] Bluebox[:compute] is deprecated, use Compute[:bluebox] instead[/]") Fog::Compute.new(:provider => 'Bluebox') when :dns Formatador.display_line("[yellow][WARN] Bluebox[:storage] is deprecated, use Storage[:bluebox] instead[/]") Fog::DNS.new(:provider => 'Bluebox') else raise ArgumentError, "Unrecognized service: #{service}" end end @@connections[service] end