mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
18 lines
436 B
Ruby
18 lines
436 B
Ruby
module Fog
|
|
module GoGrid
|
|
|
|
extend Fog::Provider
|
|
|
|
service_path 'fog/go_grid'
|
|
service 'compute'
|
|
|
|
def self.new(attributes = {})
|
|
location = caller.first
|
|
warning = "[yellow][WARN] Fog::GoGrid#new is deprecated, use Fog::GoGrid::Compute#new instead[/]"
|
|
warning << " [light_black](" << location << ")[/] "
|
|
Formatador.display_line(warning)
|
|
Fog::Bluebox::Compute.new(attributes)
|
|
end
|
|
|
|
end
|
|
end
|