class Scrapers::RubyTapas::CLI

Thor script that handles things with Avdi Grimm’s RubyTapas

Public Instance Methods

download(episode) click to toggle source
# File lib/scrapers/rubytapas/cli.rb, line 19
def download(episode)
  Scrapers::RubyTapas::Scraper.new(episode, options).scrape!
end
list() click to toggle source
# File lib/scrapers/rubytapas/cli.rb, line 28
def list()
  Scrapers::RubyTapas::Scraper.new(nil, options).list!
end
version() click to toggle source
# File lib/scrapers/rubytapas/cli.rb, line 34
def version
  say "rubytapas version: #{Scrapers::RubyTapas::VERSION}. scrapers version: #{Scrapers::VERSION}."
end