Rest assured this is not subjective. It is objectively disgusting.
> [1.0,2.0,Float::NAN].sort
ArgumentError: comparison of Float with Float failed
> # let's make NaN sortable
> Float::NAN.class.send(:define_method, '<=>') { |x| -1 }
> [1.0,2.0,Float::NAN].sort
=> [1.0, 2.0, NaN] > [1.0,2.0,Float::NAN].sort
ArgumentError: comparison of Float with Float failed