fog--fog/lib/fog/linode.rb

22 lines
510 B
Ruby

require File.join(File.dirname(__FILE__), 'core')
module Fog
module Linode
extend Fog::Provider
service(:compute, 'compute/linode')
service(:dns, 'dns/linode')
def self.new(attributes = {})
location = caller.first
warning = "[yellow][WARN] Fog::Linode#new is deprecated, use Fog::Linode::Compute#new instead[/]"
warning << " [light_black](" << location << ")[/] "
Formatador.display_line(warning)
Fog::Linode::Compute.new(attributes)
end
end
end