Sha256: cefe4c2ab6f3989571e958225836a289da9ea2c4aa972bb158ceae68cf829dd5
Contents?: true
Size: 324 Bytes
Versions: 26
Compression:
Stored size: 324 Bytes
Contents
if Numeric.instance_method(:round).arity.zero? require 'backports/tools' class Numeric def round_with_digits(ndigits=0) ndigits = Backports::coerce_to_int(ndigits) ndigits.zero? ? round_without_digits : Float(self).round(ndigits) end Backports.alias_method_chain self, :round, :digits end end
Version data entries
26 entries across 26 versions & 2 rubygems