class Middleman::Sitemap::ProxyResource
def initialize(store, path, target)
-
target
(String
) -- -
path
(String
) -- -
store
(Middleman::Sitemap::Store
) --
def initialize(store, path, target) super(store, path) target = ::Middleman::Util.normalize_path(target) raise "You can't proxy #{path} to itself!" if target == path @target = target end