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
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