- Fix rounding errors when
ActiveSupport::Duration
objects were used. Because of quirks of Ruby, they where coerced into floats even for valid Fixnums like1.second
. The fix ensures that they are converted to rationals for perfect rounding. - Allows you to use the gem without
require "date"
. (The gem will notrequire "date"
for you.) Previously, the gem errored.
Initial Release.