=begin Arachni Copyright (c) 2010-2012 Tasos "Zapotek" Laskos This is free software; you can copy and distribute and modify this program under the term of the GPL v2.0 License (See LICENSE file for details) =end module Arachni::Parser::Extractors # # @author: Tasos "Zapotek" Laskos # # # @version: 0.1 # class Sitemap < Paths # # @param [Nokogiri] Nokogiri document # # @return [Array] paths # def run( doc ) [ '/sitemap.xml', '/sitemap.xml.gz' ] end end end