Class: RCrawler::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/rcrawler/cli.rb

Instance Method Summary collapse

Instance Method Details

#sc(url) ⇒ Object



12
13
14
15
16
17
# File 'lib/rcrawler/cli.rb', line 12

def sc(url)
  filename = options.fetch("output", "#{Digest::SHA1.hexdigest(url)}.png")
  RCrawler.crawl do
    screenshot(url, filename)
  end
end