diff --git a/lib/lastfm/method_category/chart.rb b/lib/lastfm/method_category/chart.rb index 571177a..296feb4 100644 --- a/lib/lastfm/method_category/chart.rb +++ b/lib/lastfm/method_category/chart.rb @@ -4,6 +4,10 @@ class Chart < Base regular_method :get_hyped_artists, [], [[:page, nil], [:limit, nil]] do |response| response.xml['artists']['artist'] end + + regular_method :get_top_artists, [], [[:page, nil], [:limit, nil]] do |response| + response.xml['artists']['artist'] + end end end end