mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
504 B
Ruby
22 lines
504 B
Ruby
require File.join(File.dirname(__FILE__), 'core')
|
|
|
|
module Fog
|
|
module Linode
|
|
|
|
extend Fog::Provider
|
|
|
|
service_path 'fog/linode'
|
|
service 'compute'
|
|
service 'dns'
|
|
|
|
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
|
|
|