Sha256: a6e6d9f690545dbf3769cdcd2589a5da7a6ed56543485c379e926a90b1be16f6

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 KB

Contents

class Lastfm
  module MethodCategory
    class Track < Base
      write_method :add_tags, [:artist, :track, :tags]
      write_method :remove_tag, [:artist, :track, :tag]
      write_method :ban, [:artist, :track]
      write_method :love, [:artist, :track]
      write_method :share, [:artist, :track, :recipient], [[:message, nil]]

      regular_method :get_info, [:artist, :track], [[:username, nil]] do |response|
        response.xml['track']
      end
      regular_method :get_top_fans, [:artist, :track], [] do |response|
        response.xml['topfans']['user']
      end
      regular_method :get_top_tags, [:artist, :track], [] do |response|
        response.xml['toptags']['tag']
      end
      regular_method :get_similar, [:artist, :track], [] do |response|
        response.xml['similartracks']['track'][1 .. -1]
      end
      regular_method :search, [:track], [[:artist, nil], [:limit, nil], [:page, nil]]

      method_with_authentication :get_tags, [:artist, :track], [] do |response|
        response.xml['tags']['tag']
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lastfm-0.1.0 lib/lastfm/method_category/track.rb