# File lib/fastri/ri_service.rb, line 31 def initialize(*args) super(*args) reset_stringio end
# File lib/fastri/ri_service.rb, line 40 def print(*a) @stringio.print(*a) end
# File lib/fastri/ri_service.rb, line 36 def puts(*a) @stringio.puts(*a) end
# File lib/fastri/ri_service.rb, line 44 def reset_stringio @stringio = StringIO.new("") @formatter.stringio = @stringio end