Hi, a customer is reporting problems in Jruby 1.1.x where a float value
will
be dumped to YAML like so:
time: !float:Float 0.06794929504394531
The MRI always dumps like so:
time: 0.06794929504394531
Is there an autoboxing or coercion code path in Jruby that makes
YAML::dump
think this float value is a Ruby object, not a primitive?