I'm using the runt gem in a rails 3 upgrade (ruby 1.9.3), and get this error: undefined methodprecision' for nil:NilClass`.
This is how to replicate it on irb/pry:
> require 'runt'
=> true
> start_at = Runt::PDate.min(2009,1,1, 0, 0)
=> #<Runt::PDate: 2009-01-01T00:00:00+00:00 ((2454833j,0s,0n),+0s,2299161j)>
> end_at = Runt::PDate.min(2009,1,1, 1, 30)
=> #<Runt::PDate: 2009-01-01T01:30:00+00:00 ((2454833j,5400s,0n),+0s,2299161j)>
> runt_pattern = Runt::EveryTE.new(start_at, 600)
=> every 600 minutes starting Thu Jan 1 00:00:00 2009
> date_range = Runt::DateRange.new(start_at, end_at)
=> #<Runt::PDate: 2009-01-01T00:00:00+00:00 ((2454833j,0s,0n),+0s,2299161j)>
..
#<Runt::PDate: 2009-01-01T01:30:00+00:00 ((2454833j,5400s,0n),+0s,2299161j)>
> schedule = Runt::Schedule.new
=> #<Runt::Schedule:0x007fd46cad56b8 @elems={}>
> schedule.add 'events', runt_pattern
=> every 600 minutes starting Thu Jan 1 00:00:00 2009
> schedule.dates('events', date_range)
NoMethodError: undefined method `precision' for nil:NilClass
from /Users/ttt/.rbenv/versions/1.9.3-p194/lib/ruby/gems/1.9.1/gems/runt-0.7.0/lib/runt/dprecision.rb:121:in `<=>'
Does anyone know anything about this?
It seems to be be triggered by this line: https://github.com/texel/runt/blob/master/lib/runt/schedule.rb#L28, but still trying to figure out how to dig further into the code.
I've noticed that there are some more updated runt versions, such as https://github.com/craigw/runt, but they don't seem to fix the problem either.
It works on rails2 on ree-1.8.7-2011.03, and returns [Thu, 01 Jan 2009 00:00:00 +0000].
Edit: Added what rails2 returns.