puts statement in ruby automatically adds a new line, how do I avoid it?
puts
$stdout.sync = true 100.times do print "." sleep 1 end
"How can I use “puts” to the console without a line break in ruby on rails?"