class Integer
JRuby 9.2 still has a buggy support for refinements, so we need to revert to the brutal monkeypatching of the Integer
class
Public Instance Methods
msec()
click to toggle source
def minute; self * 60; end def minutes; self * 60; end def second; self; end def seconds; self; end
# File lib/sisfc/configuration.rb, line 29 def msec; self * 1E-3; end
msecs()
click to toggle source
# File lib/sisfc/configuration.rb, line 30 def msecs; self * 1E-3; end