]> git.r.bdr.sh - rbdr/lyricli.rb/blobdiff - lib/lyricli/sources/rdio.rb
Moves the default config to /config
[rbdr/lyricli.rb] / lib / lyricli / sources / rdio.rb
index 40884b7cb78e278e68a3fc79df2e31b32ae9cd80..0be89f390a7b04ec8b224ef7eea44bb01f9bbae3 100644 (file)
@@ -1,5 +1,7 @@
 module Lyricli
   module Sources
+
+    # This is the Source for rdio
     class Rdio
 
       class << self
@@ -32,12 +34,13 @@ module Lyricli
 
       # The current_track method should return the name of the current
       # artist and song.
+      #
       # @return [Hash] A hash containing the current `:song` and `:artist`.
       def current_track
         response = @rdio.call('currentUser', {'extras' => 'lastSongPlayed'})
         artist = response["result"]["lastSongPlayed"]["artist"]
         song = response["result"]["lastSongPlayed"]["name"]
-        {artist: artist, song: song}
+        {:artist => artist, :song => song}
       end
 
       # The reset method resets any configurations it may have
@@ -65,7 +68,6 @@ module Lyricli
         @config["rdio_auth_token"] = token
         token
       end
-
     end
   end
 end