blob: de00e0765075cb1342dc433868b4f0cffc697a17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/env ruby
#
# Copyright 2009 David Vazgenovich Shakaryan <dvshakaryan@gmail.com>
# Distributed under the terms of the GNU General Public License v3.
# See http://www.gnu.org/licenses/gpl.txt for the full license text.
module MPDStatus
# Returns a Hash containing information about the current song.
def currentsong
return generate_hash send_request 'currentsong'
end
# Returns a Hash containing the current status.
def status
return generate_hash send_request 'status'
end
# Returns a Hash containing statistics.
def stats
return generate_hash send_request 'stats'
end
end
|