Sha256: 53c78a102ed73e06ee2b6da4bfccab8d6fd5487e78b6650c4e49b6c8b2916587
Contents?: true
Size: 794 Bytes
Versions: 4
Compression:
Stored size: 794 Bytes
Contents
=begin Arachni Copyright (c) 2010-2011 Tasos "Zapotek" Laskos <tasos.laskos@gmail.com> 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 Anemone::Extractors # # Extracts paths from "link" HTML elements. # # @author: Tasos "Zapotek" Laskos # <tasos.laskos@gmail.com> # <zapotek@segfault.gr> # @version: 0.1 # class Links < Paths # # Returns an array of paths as plain strings # # @param [Nokogiri] Nokogiri document # # @return [Array<String>] paths # def run( doc ) doc.search( "//link[@href]" ).map { |a| a['href'] } end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
arachni-0.2.4 | path_extractors/links.rb |
arachni-0.2.3 | path_extractors/links.rb |
arachni-0.2.2.2 | path_extractors/links.rb |
arachni-0.2.2.1 | path_extractors/links.rb |