fog--fog/lib/fog/go_grid.rb

19 lines
435 B
Ruby
Raw Normal View History

2010-07-25 00:12:13 +00:00
module Fog
module GoGrid
2010-07-25 00:12:13 +00:00
extend Fog::Provider
2010-07-25 00:12:13 +00:00
service_path 'fog/go_grid'
service 'servers'
2010-07-25 00:12:13 +00:00
def self.new(attributes = {})
location = caller.first
warning = "[yellow][WARN] Fog::GoGrid#new is deprecated, use Fog::GoGrid::Servers#new instead[/]"
warning << " [light_black](" << location << ")[/] "
Formatador.display_line(warning)
Fog::Bluebox::Blocks.new(attributes)
2010-07-25 00:12:13 +00:00
end
end
end