summaryrefslogtreecommitdiff
path: root/libmpd.rb
diff options
context:
space:
mode:
Diffstat (limited to 'libmpd.rb')
-rw-r--r--libmpd.rb12
1 files changed, 2 insertions, 10 deletions
diff --git a/libmpd.rb b/libmpd.rb
index 3bbf4c8..f6fcb0b 100644
--- a/libmpd.rb
+++ b/libmpd.rb
@@ -5,6 +5,7 @@
# See http://www.gnu.org/licenses/gpl.txt for the full license text.
require 'socket'
+require 'libmpd/database'
require 'libmpd/playbackcontrol'
require 'libmpd/playbackoptions'
require 'libmpd/playlist'
@@ -23,6 +24,7 @@ class FalseClass # :nodoc:
end
class MPD
+ include MPDDatabase
include MPDPlaybackControl
include MPDPlaybackOptions
include MPDPlaylist
@@ -81,16 +83,6 @@ class MPD
return songs
end
- # Find all songs in database with an exact match.
- def find type, what
- return split_and_hash send_request 'find %s "%s"' % [type, what]
- end
-
- # Searches the database.
- def search type, what
- return split_and_hash send_request 'search %s "%s"' % [type, what]
- end
-
private :generate_hash
private :get_response
private :split_and_hash