module Creepycrawler

Public Class Methods

crawl(url, options = {}) click to toggle source

class method to start a crawl

# File lib/creepy-crawler.rb, line 37
def Creepycrawler.crawl(url, options = {})
  return Site.new(url, options).crawl
end