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