1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/zerigo.rb
Athir Nuaimi 15d35d3e0c start of work to support Zerigo DNS service
have defined all the requests in compute.rb
have the 1st request - list_zones working
2010-12-11 20:01:33 -05:00

21 lines
479 B
Ruby

require 'nokogiri'
require 'fog/core/parser'
module Fog
module Zerigo
extend Fog::Provider
service_path 'fog/zerigo'
service :compute
def self.new(attributes = {})
location = caller.first
warning = "[yellow][WARN] Fog::Zerigo#new is deprecated, use Fog::Zerigo::Compute#new instead[/]"
warning << " [light_black](" << location << ")[/] "
Formatador.display_line(warning)
Fog::Zerigo::Compute.new(attributes)
end
end
end