class FanartApi::Music
Private Instance Methods
album_path()
click to toggle source
# File lib/fanart_api/music.rb, line 211 def album_path ':kind/albums/:id' end
album_path_with_params(options)
click to toggle source
# File lib/fanart_api/music.rb, line 199 def album_path_with_params(options) path_with_params(album_path, options.merge(kind: :music)) end
artist_path_with_params(options)
click to toggle source
# File lib/fanart_api/music.rb, line 195 def artist_path_with_params(options) path_with_params(find_path, options.merge(kind: :music)) end
label_path()
click to toggle source
# File lib/fanart_api/music.rb, line 215 def label_path ':kind/labels/:id' end
label_path_with_params(options)
click to toggle source
# File lib/fanart_api/music.rb, line 203 def label_path_with_params(options) path_with_params(label_path, options.merge(kind: :music)) end
latest_path_with_params(options)
click to toggle source
# File lib/fanart_api/music.rb, line 207 def latest_path_with_params(options) path_with_params(latest_path, options.merge(kind: :music)) end