Ben Caldwell

Results 1 issues of Ben Caldwell

For site-specific crawlers, it's fair enough to use `focus_crawl` like this: ``` anemone.focus_crawl do |page| if page.doc page.doc.search('.//a[@href]').map { |a| URI.parse(a[:href]) } else page.links end end ``` However when using...