10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# File 'lib/testr/server.rb', line 10
def loop
(@client = STDOUT.dup).sync = true
STDOUT.reopen(STDERR).sync = true
catch :testr_server_quit do
while line = STDIN.gets
warn "#{caller[2]} RECV #{line.chomp}" if $DEBUG
command = JSON.load(line)
method = command.first
if respond_to? method and method != __method__ @command, @command_line = command, line
__send__(*command)
else
warn "#{self}: bad command: #{method}"
end
end
end
rescue Interrupt
end
|