Class: Middleman::Sitemap::Extensions::Proxies::ProxyConfiguration

Inherits:
Object
  • Object
show all
Defined in:
lib/middleman-core/sitemap/extensions/proxies.rb

Overview

Configuration for a proxy instance

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ ProxyConfiguration

Create a new proxy configuration from hash options



152
153
154
155
156
# File 'lib/middleman-core/sitemap/extensions/proxies.rb', line 152

def initialize(options={})
  options.each do |key, value|
    send "#{key}=", value
  end
end

Instance Attribute Details

#metadataObject

Additional metadata like blocks and locals to apply to the proxy



149
150
151
# File 'lib/middleman-core/sitemap/extensions/proxies.rb', line 149

def 
  @metadata
end

#pathObject

The path that this proxy will appear at in the sitemap



137
138
139
# File 'lib/middleman-core/sitemap/extensions/proxies.rb', line 137

def path
  @path
end

#targetObject

The existing sitemap path that this will proxy to



143
144
145
# File 'lib/middleman-core/sitemap/extensions/proxies.rb', line 143

def target
  @target
end

Instance Method Details

#eql?(other) ⇒ Boolean

Two configurations are equal if they reference the same path

Returns:

  • (Boolean)


159
160
161
# File 'lib/middleman-core/sitemap/extensions/proxies.rb', line 159

def eql?(other)
  other.path == path
end

#hashObject

Two configurations are equal if they reference the same path



164
165
166
# File 'lib/middleman-core/sitemap/extensions/proxies.rb', line 164

def hash
  path.hash
end