example: mpd.connect. readline -> gets

master
Denis Knauf 2010-04-11 18:54:04 +02:00
parent d185528889
commit 8e2368bf95
2 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@ Control your MPD:
require 'librmpd'
lirc = LIRC::Client.new
mpd = MPD.new 'localhost', 6600
mpd.connect
lirc.each do |event|
case event.name
when "play"

View File

@ -8,7 +8,7 @@ module LIRC
end
def next
Event.new @sock.readline
Event.new @sock.gets
end
def each_event