mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
21 lines
479 B
Ruby
21 lines
479 B
Ruby
require 'fog/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
|
|
|