]> git.r.bdr.sh - rbdr/lyricli.rb/blobdiff - lib/lyricli/sources/arguments.rb
Fixes stuff for ruby 1.8 support
[rbdr/lyricli.rb] / lib / lyricli / sources / arguments.rb
index 82a815712984cc5d08cd3dbe795b322f7a862c05..e35aaec6472fabf8379442d02264601f5c177b8e 100644 (file)
@@ -1,5 +1,7 @@
 module Lyricli
   module Sources
+    # The arguments source. This one is special since it expects two
+    # arguments. It is treated specially by the SourceManager.
     class Arguments
 
       class << self
@@ -25,7 +27,7 @@ module Lyricli
       def current_track
         artist = ARGV[0]
         song = ARGV[1]
-        {artist: artist, song: song}
+        {:artist => artist, :song => song}
       end
 
       # The reset method resets any configurations it may have