Sha256: c6d0f7d5f555f6788d165d8bebf583f3b319ccc682e8ca76d18d825841d0a05b
Contents?: true
Size: 630 Bytes
Versions: 2
Compression:
Stored size: 630 Bytes
Contents
# Notu API to get Last.fm tracks (top, loved, etc.). ## Installation Just add this into your `Gemfile`: ```ruby gem 'notu' ``` Then, just run `bundle install`. ## Example ```ruby user_api = Notu::UserApi.new(username: 'johndoe') user_api.loved_tracks.each do |track| puts track.artist end user_api.top_tracks(period: '3month').each do |track| puts "#{track.artist}: #{track.plays_count}" end user_api.recent_tracks.each do |track| puts track.title 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
notu-5.0.1 | README.mdown |
notu-5.0.0 | README.mdown |