class ThetvdbApi::Update

Public Instance Methods

all() click to toggle source

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
all_url() click to toggle source

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
day() click to toggle source

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
day_url() click to toggle source

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
month() click to toggle source

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
month_url() click to toggle source

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
week() click to toggle source

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
week_url() click to toggle source

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

all_path() click to toggle source
# File lib/thetvdb_api/update.rb, line 100
def all_path
  ':apikey/updates/updates_all.xml'
end
all_path_with_params() click to toggle source
# File lib/thetvdb_api/update.rb, line 96
def all_path_with_params
  path(all_path).params(api_key_options)
end
day_path() click to toggle source
# File lib/thetvdb_api/update.rb, line 76
def day_path
  ':apikey/updates/updates_day.xml'
end
day_path_with_params() click to toggle source
# File lib/thetvdb_api/update.rb, line 72
def day_path_with_params
  path(day_path).params(api_key_options)
end
month_path() click to toggle source
# File lib/thetvdb_api/update.rb, line 92
def month_path
  ':apikey/updates/updates_month.xml'
end
month_path_with_params() click to toggle source
# File lib/thetvdb_api/update.rb, line 88
def month_path_with_params
  path(month_path).params(api_key_options)
end
week_path() click to toggle source
# File lib/thetvdb_api/update.rb, line 84
def week_path
  ':apikey/updates/updates_week.xml'
end
week_path_with_params() click to toggle source
# File lib/thetvdb_api/update.rb, line 80
def week_path_with_params
  path(week_path).params(api_key_options)
end