class DownloadTV::Subtitles

Manages the subtitles (WIP)

Public Class Methods

new() click to toggle source
# File lib/download_tv/subtitles.rb, line 7
def initialize
  @a = Addic7ed.new
end

Public Instance Methods

get_subs(show) click to toggle source
# File lib/download_tv/subtitles.rb, line 11
def get_subs(show)
  @a.get_subs(show)
rescue NoSubtitlesError
  puts "No subtitles found for #{show}"
end