Sha256: 6546a584dc4a0b1f6ab82bbd0774d4fb8faca04f11f25d434b2d4ebda6d745b1

Contents?: true

Size: 467 Bytes

Versions: 1

Compression:

Stored size: 467 Bytes

Contents

module Retriever
  #
  class FetchSEO < Fetch
    # recieves target url and RR options
    # returns an array of onpage SEO related fields
    #   on all unique pages found on the site
    def initialize(url, options)
      super
      start
      @result.push(@page_one.parse_seo)

      async_crawl_and_collect
      # done, make sure progress bar says we are done
      @progressbar.finish if @progress
      @result.sort_by! { |x| x[0].length }
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubyretriever-1.3.0 lib/retriever/fetchseo.rb