This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Mattt Thompson (author)
Thu Aug 07 17:48:57 -0700 2008
commit c1849b7e8024a4629ee218d18a38688cab90fd1e
tree 9cdf0c8408ea79d5f560442de97aba9b86d1a2a5
parent b671360fe867b01a4578dee17a7b1307607b3603
tree 9cdf0c8408ea79d5f560442de97aba9b86d1a2a5
parent b671360fe867b01a4578dee17a7b1307607b3603
| name | age | message | |
|---|---|---|---|
| |
History.txt | ||
| |
License.txt | ||
| |
Manifest.txt | ||
| |
PostInstall.txt | ||
| |
README.txt | ||
| |
Rakefile | ||
| |
config/ | ||
| |
lib/ | ||
| |
script/ | ||
| |
setup.rb | ||
| |
tasks/ | ||
| |
test/ | ||
| |
website/ |
README.txt
= yahoo-music
A Ruby wrapper for the Yahoo! Music APIs.
== Example Usage
=== Artists:
require 'yahoo-music'
include Yahoo::Music
Yahoo::Music.app_id = [Your App ID Here]
artist = Artist.new("Ben Folds Five")
puts artist.name
puts artist.website
puts '*' * 40
puts
puts 'Releases'
artist.releases.each do |release|
puts "\t- %s" % release.title
end
=== Releases & Tracks:
require 'yahoo-music'
include Yahoo::Music
Yahoo::Music.app_id = [Your App ID Here]
album = Album.search("The White Album").first
puts album.title
puts album.artist
puts "Release Date:" + album.released_on.strftime("%m/%d/%Y")
puts '*' * 40
puts
puts 'Tracks'
artist.tracks.each_with_index do |track, i|
puts "\t%d %s \t%2d:%2d" % [i, track.title, track.duration / 60, track.duration % 60]
end
== REQUIREMENTS:
To use this library, you must have a valid Yahoo! App ID.
You can get one at http://developer.yahoo.com/wsregapp/
Additionally, yahoo-music has the following gem dependencies:
* Hpricot >= 0.6
* ActiveSupport >= 2.1.0
* FlexMock >= 0.8.2
== INSTALL:
* sudo gem install yahoo-music
== LICENSE:
(The MIT License)
Copyright (c) 2008 Mattt Thompson
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.








