X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli.rb/blobdiff_plain/823e558b5cd2ec219d0fc7226c54f2ee7ad807d2..HEAD:/doc/Lyricli.html
diff --git a/doc/Lyricli.html b/doc/Lyricli.html
index 8c0685a..cb95933 100644
--- a/doc/Lyricli.html
+++ b/doc/Lyricli.html
@@ -6,7 +6,7 @@
Module: Lyricli
- — Documentation by YARD 0.8.1
+ — Documentation by YARD 0.8.2.1
@@ -80,17 +80,30 @@
Defined in:
lib/lyricli.rb,
- lib/lyricli/util.rb,
lib/lyricli/sources/rdio.rb,
lib/lyricli/lyrics_engine.rb,
lib/lyricli/configuration.rb,
lib/lyricli/source_manager.rb,
lib/lyricli/sources/arguments.rb
+ lib/lyricli/util.rb,
lib/lyricli/sources.rb,
lib/lyricli/lyricli.rb,
lib/lyricli/exceptions.rb,
lib/lyricli/sources/rdio.rb,
lib/lyricli/configuration.rb,
lib/lyricli/lyrics_engine.rb,
lib/lyricli/sources/itunes.rb,
lib/lyricli/source_manager.rb,
lib/lyricli/sources/arguments.rb,
lib/lyricli/exceptions/reset_source_error.rb,
lib/lyricli/exceptions/start_source_error.rb,
lib/lyricli/exceptions/enable_source_error.rb,
lib/lyricli/exceptions/unknown_source_error.rb,
lib/lyricli/exceptions/invalid_lyrics_error.rb,
lib/lyricli/exceptions/disable_source_error.rb,
lib/lyricli/exceptions/lyrics_not_found_error.rb,
lib/lyricli/exceptions/source_configuration_error.rb
-Defined Under Namespace
+Overview
+
+
+The Lyricli module allows you to easily search for lyrics by looking for
+song and artist data from diverse sources.
+
+
+
+
+
+
+
+
+
Defined Under Namespace
- Modules: Sources, Util
+ Modules: Exceptions, Sources, Util
@@ -116,7 +129,32 @@
- + (Object) execute
+ + (Object) disable(source_name)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Disables a source via the Source Manager.
+
+
+
+
+
+
+
+
+
+ + (Object) enable(source_name)
@@ -130,7 +168,111 @@
-
+
+Enables a source via the Source Manager.
+
+
+
+
+
+
+
+
+
+ + (String) lyrics
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Creates a new Lyricli instance and returns lyrics by going through the
+sources.
+
+
+
+
+
+
+
+
+
+ + (Object) reset(source_name)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Resets all configuration for a source via the Source Manager.
+
+
+
+
+
+
+
+
+
+ + (String) sources
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Returns a list of the available sources to enable or disable.
+
+
+
+
+
+
+
+
+
+ + (String) version
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Returns the version of the library.
+
+
@@ -145,35 +287,347 @@
-
+
+
+ + (Object) disable(source_name)
+
+
+
+
+
+
+
+
+Disables a source via the Source Manager
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+70
+71
+72
+73
+74
+75
+76
+77
+ |
+
+ # File 'lib/lyricli.rb', line 70
+
+def self.disable(source_name)
+ source_manager = SourceManager.new
+ begin
+ source_manager.disable(source_name)
+ rescue Exceptions::UnknownSourceError
+ "There is no such Source"
+ end
+end
+ |
+
+
+
+
+
+
+
+ + (Object) enable(source_name)
+
+
+
+
+
+
+
+
+Enables a source via the Source Manager
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+60
+61
+62
+63
+64
+65
+66
+67
+ |
+
+ # File 'lib/lyricli.rb', line 60
+
+def self.enable(source_name)
+ source_manager = SourceManager.new
+ begin
+ source_manager.enable(source_name)
+ rescue Exceptions::UnknownSourceError
+ "There is no such Source"
+ end
+end
+ |
+
+
+
+
+
+
+
+ + (String) lyrics
- + (Object) execute
+
+
+
+
+Creates a new Lyricli instance and returns lyrics by going through the
+sources.
+
+
+
+
+