Class: LastFM::Chart
- Inherits:
-
Object
- Object
- LastFM::Chart
- Defined in:
- lib/lastfm/chart.rb
Class Method Summary collapse
-
.get_hyped_artists(params) ⇒ Object
Get the hyped artists chart.
-
.get_hyped_tracks(params) ⇒ Object
Get the hyped tracks chart.
-
.get_loved_tracks(params) ⇒ Object
Get the most loved tracks chart.
-
.get_top_artists(params) ⇒ Object
Get the top artists chart.
-
.get_top_tags(params) ⇒ Object
Get the top tags chart.
-
.get_top_tracks(params) ⇒ Object
Get the top tracks chart.
Class Method Details
.get_hyped_artists(params) ⇒ Object
Get the hyped artists chart
10 11 12 |
# File 'lib/lastfm/chart.rb', line 10 def get_hyped_artists( params ) LastFM.get( "chart.getHypedArtists", params ) end |
.get_hyped_tracks(params) ⇒ Object
Get the hyped tracks chart
19 20 21 |
# File 'lib/lastfm/chart.rb', line 19 def get_hyped_tracks( params ) LastFM.get( "chart.getHypedTracks", params ) end |
.get_loved_tracks(params) ⇒ Object
Get the most loved tracks chart
28 29 30 |
# File 'lib/lastfm/chart.rb', line 28 def get_loved_tracks( params ) LastFM.get( "chart.getLovedTracks", params ) end |
.get_top_artists(params) ⇒ Object
Get the top artists chart
37 38 39 |
# File 'lib/lastfm/chart.rb', line 37 def get_top_artists( params ) LastFM.get( "chart.getTopArtists", params ) end |
.get_top_tags(params) ⇒ Object
Get the top tags chart
46 47 48 |
# File 'lib/lastfm/chart.rb', line 46 def ( params ) LastFM.get( "chart.getTopTags", params ) end |
.get_top_tracks(params) ⇒ Object
Get the top tracks chart
55 56 57 |
# File 'lib/lastfm/chart.rb', line 55 def get_top_tracks( params ) LastFM.get( "chart.getTopTracks", params ) end |