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