TODO metadata for path extension

This commit is contained in:
Ben Hollis 2014-05-10 18:03:56 -07:00
parent d687677e38
commit 78b7bbb92a

View file

@ -0,0 +1,17 @@
module Middleman
module Sitemap
module Extensions
# Add metadata to Resources based on path matchers. This exists
# entirely to support the "page" method in config.rb.
# TODO: This requires the concept of priority for sitemap manipulators
# in order for it to always run after all other manipulators.
class MetadataForPath
def initialize(sitemap)
@app = sitemap.app
end
end
end
end
end