Sha256: deb71cfd4838c8e2930c9c58cc5e258eed6f3d56cd1ecf8291f4496446bb5136

Contents?: true

Size: 587 Bytes

Versions: 6

Compression:

Stored size: 587 Bytes

Contents

# Kagu

API to get Last.fm most played and loved tracks.

## Installation

Just add this into your `Gemfile`:

    gem 'notu'

Then, just run `bundle install`.

## Example

    library = Notu::Library.new(username: 'johndoe')

    library.loved_tracks.each do |track|
      puts track.artist
    end

    library.most_played_tracks(period: 'last_month').each do |track|
      puts "#{track.artist}: #{track.plays_count}"
    end

## Executing test suite

This project is fully tested with [Rspec 3](http://github.com/rspec/rspec).
Just run `bundle exec rake` (after a `bundle install`).

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
notu-0.1.6 README.mdown
notu-0.1.5 README.mdown
notu-0.1.4 README.mdown
notu-0.1.3 README.mdown
notu-0.1.2 README.mdown
notu-0.1.1 README.mdown