]> git.cworth.org Git - sup/blob - lib/sup/modes/poll-mode.rb
fix garbaged text in textfield when using ncursesw
[sup] / lib / sup / modes / poll-mode.rb
1 module Redwood
2
3 class PollMode < LogMode
4   def initialize
5     @new = true
6     super
7   end
8
9   def puts s=""
10     self << s + "\n"
11   end
12
13   def poll
14     puts unless @new
15     @new = false
16     puts "Poll started at #{Time.now}"
17     PollManager.do_poll { |s| puts s }
18   end
19 end
20
21 end