Sha256: ad392702e9639af885a73a3b01206041266214507b7462d45070f7dd2db8de6f
Contents?: true
Size: 390 Bytes
Versions: 3
Compression:
Stored size: 390 Bytes
Contents
module DownloadTV class LinkGrabber attr_reader :url def initialize(url) @url = url @agent = Mechanize.new end def test_connection agent = Mechanize.new agent.read_timeout = 2 agent.get(@url) end def get_links(_s) raise NotImplementedError end end class NoTorrentsError < StandardError end class NoSubtitlesError < StandardError end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
download_tv-2.2.1 | lib/download_tv/linkgrabber.rb |
download_tv-2.2.0 | lib/download_tv/linkgrabber.rb |
download_tv-2.1.1 | lib/download_tv/linkgrabber.rb |