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