Module: Creepycrawler

Defined in:
lib/creepy-crawler.rb,
lib/creepy-crawler/page.rb,
lib/creepy-crawler/site.rb,
lib/creepy-crawler/graph.rb

Defined Under Namespace

Classes: Graph, Page, Site

Class Method Summary collapse

Class Method Details

.crawl(url, options = {}) ⇒ Object

class method to start a crawl



37
38
39
# File 'lib/creepy-crawler.rb', line 37

def Creepycrawler.crawl(url, options = {})
  return Site.new(url, options).crawl
end