<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>.loadpath</filename>
    </added>
    <added>
      <filename>.project</filename>
    </added>
    <added>
      <filename>tasks/yardoc.rake</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -9,3 +9,4 @@ coverage
 spec.html
 scrobbler.gemspec
 catalog.xml
+.yardoc</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -9,86 +9,86 @@ all functions is available at http://rdoc.info/projects/xhochy/scrobbler
 
 == Initialization
 
-    Scrobbler::Base.api_key = 'foo123'
+  Scrobbler::Base.api_key = 'foo123'
 
 == Users
 
-	user = Scrobbler::User.new('jnunemaker')
+  user = Scrobbler::User.new('jnunemaker')
 
-	puts &quot;#{user.username}'s Recent Tracks&quot;
-	puts &quot;=&quot; * (user.username.length + 16)
-	user.recent_tracks.each { |t| puts t.name }
+  puts &quot;#{user.username}'s Recent Tracks&quot;
+  puts &quot;=&quot; * (user.username.length + 16)
+  user.recent_tracks.each { |t| puts t.name }
 
-	puts
-	puts
+  puts
+  puts
 
-	puts &quot;#{user.username}'s Top Tracks&quot;
-	puts &quot;=&quot; * (user.username.length + 13)
-	user.top_tracks.each { |t| puts &quot;(#{t.playcount}) #{t.name}&quot; }
+  puts &quot;#{user.username}'s Top Tracks&quot;
+  puts &quot;=&quot; * (user.username.length + 13)
+  user.top_tracks.each { |t| puts &quot;(#{t.playcount}) #{t.name}&quot; }
 	
 == Albums
 	
-	album = Scrobbler::Album.new('Some Hearts', :artist =&gt; 'Carrie Underwood', :include_info =&gt; true)
+  album = Scrobbler::Album.new('Some Hearts', :artist =&gt; 'Carrie Underwood', :include_info =&gt; true)
 
-	puts &quot;Album: #{album.name}&quot;
-	puts &quot;Artist: #{album.artist}&quot;
-	puts &quot;Playcount: #{album.playcount}&quot;
-	puts &quot;URL: #{album.url}&quot;
-	puts &quot;Release Date: #{album.release_date.strftime('%m/%d/%Y')}&quot;
+  puts &quot;Album: #{album.name}&quot;
+  puts &quot;Artist: #{album.artist}&quot;
+  puts &quot;Playcount: #{album.playcount}&quot;
+  puts &quot;URL: #{album.url}&quot;
+  puts &quot;Release Date: #{album.release_date.strftime('%m/%d/%Y')}&quot;
 	
 ==Artists
 	
-	artist = Scrobbler::Artist.new('Carrie Underwood')
+  artist = Scrobbler::Artist.new('Carrie Underwood')  
+  
+  puts 'Top Tracks'
+  puts &quot;=&quot; * 10
+  artist.top_tracks.each { |t| puts &quot;(#{t.playcount}) #{t.name}&quot; }
 
-	puts 'Top Tracks'
-	puts &quot;=&quot; * 10
-	artist.top_tracks.each { |t| puts &quot;(#{t.playcount}) #{t.name}&quot; }
+  puts
 
-	puts
-
-	puts 'Similar Artists'
-	puts &quot;=&quot; * 15
-	artist.similar.each { |a| puts &quot;(#{a.match}%) #{a.name}&quot; }
+  puts 'Similar Artists'
+  puts &quot;=&quot; * 15
+  artist.similar.each { |a| puts &quot;(#{a.match}%) #{a.name}&quot; }
 
 ==Geo
 
-   geo = Scrobbler::Geo.new()
+  geo = Scrobbler::Geo.new()
 
-   puts 'Events'
-   puts &quot;=&quot; * 10
-   geo.events(:location =&gt; 'Manchester').each { |e| puts &quot;(#{e.id}) #{e.title}&quot; }
+  puts 'Events'
+  puts &quot;=&quot; * 10
+  geo.events(:location =&gt; 'Manchester').each { |e| puts &quot;(#{e.id}) #{e.title}&quot; }
 
-   puts
+  puts
 
-   puts 'Top Artists'
-   puts &quot;=&quot; * 10
-   geo.top_artists(:location =&gt; 'Manchester').each { |a| puts &quot;(#{a.name}) #{a.playcount}&quot; }
+  puts 'Top Artists'
+  puts &quot;=&quot; * 10
+  geo.top_artists(:location =&gt; 'Manchester').each { |a| puts &quot;(#{a.name}) #{a.playcount}&quot; }
 
-   puts
+  puts
 
-   puts 'Top Tracks'
-   puts &quot;=&quot; * 10
-   geo.top_tracks(:location =&gt; 'Manchester').each { |t| puts &quot;(#{a.name}) #{a.playcount}&quot; }
+  puts 'Top Tracks'
+  puts &quot;=&quot; * 10
+  geo.top_tracks(:location =&gt; 'Manchester').each { |t| puts &quot;(#{a.name}) #{a.playcount}&quot; }
 
 	
 ==Tags	
 	
-	tag = Scrobbler::Tag.new('country')
+  tag = Scrobbler::Tag.new('country')
 
-	puts 'Top Albums'
-	tag.top_albums.each { |a| puts &quot;(#{a.count}) #{a.name} by #{a.artist}&quot; }
+  puts 'Top Albums'
+  tag.top_albums.each { |a| puts &quot;(#{a.count}) #{a.name} by #{a.artist}&quot; }
 
-	puts
+  puts
 
-	puts 'Top Tracks'
-	tag.top_tracks.each { |t| puts &quot;(#{t.count}) #{t.name} by #{t.artist}&quot; }
+  puts 'Top Tracks'
+  tag.top_tracks.each { |t| puts &quot;(#{t.count}) #{t.name} by #{t.artist}&quot; }
 	
 ==Tracks
 	
-	track = Scrobbler::Track.new('Carrie Underwood', 'Before He Cheats')
-	puts 'Fans'
-	puts &quot;=&quot; * 4
-	track.top_fans.each { |u| puts &quot;(#{u.weight}) #{u.username}&quot; }
+  track = Scrobbler::Track.new('Carrie Underwood', 'Before He Cheats')
+  puts 'Fans'
+  puts &quot;=&quot; * 4
+  track.top_fans.each { |u| puts &quot;(#{u.weight}) #{u.username}&quot; }
 	
 == Simple Authentication (for Scrobbling)
 </diff>
      <filename>README.rdoc</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>4d64a28d2069c5f032d039f660f7d8028b2b83c8</id>
    </parent>
  </parents>
  <author>
    <name>Uwe L. Korn</name>
    <email>uwelk@xhochy.org</email>
  </author>
  <url>http://github.com/xhochy/scrobbler/commit/28612ff63e96e9c2a2fc713f775626a377386e4e</url>
  <id>28612ff63e96e9c2a2fc713f775626a377386e4e</id>
  <committed-date>2009-10-10T07:33:34-07:00</committed-date>
  <authored-date>2009-10-10T07:33:34-07:00</authored-date>
  <message>Added yardoc rake task</message>
  <tree>ad86cf7a75b5cd8f9058c13d6c09dac0b7c1d404</tree>
  <committer>
    <name>Uwe L. Korn</name>
    <email>uwelk@xhochy.org</email>
  </committer>
</commit>
