class ThetvdbApi::Update
Public Instance Methods
Find update data.
access: FREE output: Faraday::Response instance with parsed XML string example: thetvdb.com/wiki/index.php/API:Update_Records
# File lib/thetvdb_api/update.rb, line 58 def all all_path_with_params.get end
Find update data - url string.
access: FREE output: url string
# File lib/thetvdb_api/update.rb, line 66 def all_url all_path_with_params.url end
Find update data.
access: FREE output: Faraday::Response instance with parsed XML string example: thetvdb.com/wiki/index.php/API:Update_Records
# File lib/thetvdb_api/update.rb, line 7 def day day_path_with_params.get end
Find update data - url string.
access: FREE output: url string
# File lib/thetvdb_api/update.rb, line 15 def day_url day_path_with_params.url end
Find update data.
access: FREE output: Faraday::Response instance with parsed XML string example: thetvdb.com/wiki/index.php/API:Update_Records
# File lib/thetvdb_api/update.rb, line 41 def month month_path_with_params.get end
Find update data - url string.
access: FREE output: url string
# File lib/thetvdb_api/update.rb, line 49 def month_url month_path_with_params.url end
Find update data.
access: FREE output: Faraday::Response instance with parsed XML string example: thetvdb.com/wiki/index.php/API:Update_Records
# File lib/thetvdb_api/update.rb, line 24 def week week_path_with_params.get end
Find update data - url string.
access: FREE output: url string
# File lib/thetvdb_api/update.rb, line 32 def week_url week_path_with_params.url end
Private Instance Methods
# File lib/thetvdb_api/update.rb, line 100 def all_path ':apikey/updates/updates_all.xml' end
# File lib/thetvdb_api/update.rb, line 96 def all_path_with_params path(all_path).params(api_key_options) end
# File lib/thetvdb_api/update.rb, line 76 def day_path ':apikey/updates/updates_day.xml' end
# File lib/thetvdb_api/update.rb, line 72 def day_path_with_params path(day_path).params(api_key_options) end
# File lib/thetvdb_api/update.rb, line 92 def month_path ':apikey/updates/updates_month.xml' end
# File lib/thetvdb_api/update.rb, line 88 def month_path_with_params path(month_path).params(api_key_options) end
# File lib/thetvdb_api/update.rb, line 84 def week_path ':apikey/updates/updates_week.xml' end
# File lib/thetvdb_api/update.rb, line 80 def week_path_with_params path(week_path).params(api_key_options) end