# File lib/analyzer_tools/crawl.rb, line 25
  def initialize(start_url, threads = 1)
    raise ArgumentError, "Thread count must be more than 0" if threads < 1
    @start_url = start_url
    @thread_count = threads
    @threads = ThreadGroup.new
    @times = []
  end