class Dumper::Profiles::FourChan

Public Instance Methods

dump(url, path, from, to) click to toggle source
# File lib/dumper/profiles/4chan.rb, line 24
def dump(url, path, from, to)
  from -= 1
  to   -= 1 if to >= 1

  Nokogiri::HTML(open(url)).xpath('//a[@class = "fileThumb"]/@href')[from..to].each { |p|
    @pool.process {
      Dumper.get path, "http:#{p}"
    }
  }
end