# File lib/fog/dns/slicehost.rb, line 52 def initialize(options={}) require 'fog/core/parser' @slicehost_password = options[:slicehost_password] @host = options[:host] || "api.slicehost.com" @port = options[:port] || 443 @scheme = options[:scheme] || 'https' @connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", options[:persistent]) end