]> git.r.bdr.sh - rbdr/lyricli.rb/blobdiff - lib/lyricli.rb
Adds -t / --title option to show header
[rbdr/lyricli.rb] / lib / lyricli.rb
index 73c5811a0e7a102d39f34ea2057407efb050a8c7..e995c45945a115e36f756f6feef8539e1d5b249f 100755 (executable)
@@ -40,7 +40,7 @@ module Lyricli
   # @return [String] the fetched lyrics
   def self.lyrics
     @lyricli = Lyricli.new
-    @lyricli.get_lyrics
+    @lyricli.get_lyrics(@show_title)
   end
 
   # Returns the version of the library
@@ -93,4 +93,9 @@ module Lyricli
   def self.root
     File.expand_path('../..',__FILE__)
   end
+
+  # Sets the show_title instance variable so it requests the title
+  def self.show_title
+    @show_title = true
+  end
 end