# File lib/fog/compute/slicehost.rb, line 56 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