class ThetvdbApi::Episode

Private Instance Methods

find_by_absolute_order_path() click to toggle source
# File lib/thetvdb_api/episode.rb, line 286
def find_by_absolute_order_path
  ':apikey/series/:series_id/absolute/:absolute/:language.xml'
end
find_by_absolute_order_path_with_params(options) click to toggle source
# File lib/thetvdb_api/episode.rb, line 282
def find_by_absolute_order_path_with_params(options)
  path(find_by_absolute_order_path).params(api_key_with_language_options.merge(options))
end
find_by_order(options) click to toggle source
# File lib/thetvdb_api/episode.rb, line 266
def find_by_order(options)
  find_by_order_path_with_params(options).get
end
find_by_order_path() click to toggle source
# File lib/thetvdb_api/episode.rb, line 278
def find_by_order_path
  ':apikey/series/:series_id/:order/:season/:episode/:language.xml'
end
find_by_order_path_with_params(options) click to toggle source
# File lib/thetvdb_api/episode.rb, line 274
def find_by_order_path_with_params(options)
  path(find_by_order_path).params(api_key_with_language_options.merge(options))
end
find_by_order_url(options) click to toggle source
# File lib/thetvdb_api/episode.rb, line 270
def find_by_order_url(options)
  find_by_order_path_with_params(options).url
end
find_path() click to toggle source
# File lib/thetvdb_api/episode.rb, line 294
def find_path
  ':apikey/episodes/:id/:language.xml'
end
find_path_with_params(options) click to toggle source
# File lib/thetvdb_api/episode.rb, line 290
def find_path_with_params(options)
  path(find_path).params(api_key_with_language_options.merge(options))
end
map_attrs(series_id, season, episode) click to toggle source
# File lib/thetvdb_api/episode.rb, line 258
def map_attrs(series_id, season, episode)
  { series_id: series_id, season: season, episode: episode }
end
map_attrs_with_lang(series_id, season, episode, language) click to toggle source
# File lib/thetvdb_api/episode.rb, line 262
def map_attrs_with_lang(series_id, season, episode, language)
  { series_id: series_id, season: season, episode: episode, language: language }
end