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

20 lines
474 B
Ruby

require File.join(File.dirname(__FILE__), 'core')
module Fog
module GoGrid
extend Fog::Provider
service(:compute, 'go_grid/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::GoGrid::Compute.new(attributes)
end
end
end