String
# File lib/mspec/helpers/io.rb, line 20 def flush self end
# File lib/mspec/helpers/io.rb, line 8 def print(*str) write(str.join + $\.to_s) end
# File lib/mspec/helpers/io.rb, line 16 def printf(format, *args) self << sprintf(format, *args) end
# File lib/mspec/helpers/io.rb, line 12 def puts(*str) write(str.collect { |s| s.to_s.chomp }.concat([nil]).join("\n")) end
# File lib/mspec/helpers/io.rb, line 4 def write(*str) self << str.join end
[Validate]
Generated with the Darkfish Rdoc Generator 2.