class CodeClimate::TestReporter::Formatter

def round(numeric, precision)

Fixes [#7] possible segmentation fault when calling #round on a Rational
Convert to Float before rounding.
def round(numeric, precision)
  Float(numeric).round(precision)
end