class Middleman::Sitemap::Extensions::Proxies::ProxyConfiguration

Configuration for a proxy instance

def eql?(other)

Two configurations are equal if they reference the same path
def eql?(other)
  other.path == path
end

def hash

Two configurations are equal if they reference the same path
def hash
  path.hash
end

def initialize(options={})

Create a new proxy configuration from hash 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