This post is old, so a little bit of an update for future readers. Rather than doing to_s which works, you can simply do string interpolation. It's also faster and more memory efficient.
x = 0.005
"With string interpolation: #{x}" # => "With string interpolation: 0.005"
"Standard to_s method: " + x.to_s # => "Standard to_s method: 0.005"
You can also do directly (tho, admittedly silly):
"string interpolation: #{0.005}" # => "string interpolation: 0.005"
String interpolation is the way to go in Rails apps, mostly if you're pulling in ActiveRecord objects' various datatypes. It'll automatically .to_s it for you properly, and you simply need to call it as model.value instead of model.value.to_s.