X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli.rb/blobdiff_plain/b8498f5c67d736e9724e124e85aa36a58648afef..6f33706c59d73cfae04fc2e799502522de10f1c1:/lib/lyricli/sources/arguments.rb diff --git a/lib/lyricli/sources/arguments.rb b/lib/lyricli/sources/arguments.rb index e69de29..82a8157 100644 --- a/lib/lyricli/sources/arguments.rb +++ b/lib/lyricli/sources/arguments.rb @@ -0,0 +1,37 @@ +module Lyricli + module Sources + class Arguments + + class << self + attr_accessor :name + end + + @name = "arguments" + + # The enable method should run all of the tasks needed to validate + # the source. In the case of Rdio it has to authenticate with OAuth. + def self.enable + # Nothing to do. + end + + # Instantiates everything it needs to run. + def initialize + # Nothing to do. + end + + # 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 + artist = ARGV[0] + song = ARGV[1] + {artist: artist, song: song} + end + + # The reset method resets any configurations it may have + def self.reset + # Reset Code + end + end + end +end