class Middleman::Sitemap::Extensions::Proxies::ProxyConfiguration
Configuration for a proxy instance
def eql?(other)
def eql?(other) other.path == path end
def hash
def hash path.hash end
def initialize(options={})
def initialize(options={}) options.each do |key, value| send "#{key}=", value end end
def path=(p)
def path=(p) @path = ::Middleman::Util.normalize_path(p) end
def target=(t)
def target=(t) @target = ::Middleman::Util.normalize_path(t) end