1

我在 rails 3 升级(ruby 1.9.3)中使用runt gem,并得到这个错误:undefined methodprecision' for nil:NilClass`。

这是在 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 `<=>'

有人对这个有了解吗?

它似乎是由这一行触发的:https ://github.com/texel/runt/blob/master/lib/runt/schedule.rb#L28 ,但仍在试图弄清楚如何进一步挖掘代码。

我注意到有一些更新的 runt 版本,例如https://github.com/craigw/runt,但它们似乎也没有解决问题。

它适用于 ree-1.8.7-2011.03 上的 rails2,并返回[Thu, 01 Jan 2009 00:00:00 +0000].

编辑:添加了 rails2 返回的内容。

4

1 回答 1

0

看来您的问题出在EveryTE 类中。在初始化方法中有一个可选的精度参数。

class EveryTE

  include TExpr

  def initialize(start,n,precision=nil)
    @start=start
    @interval=n
    # Use the precision of the start date by default
    @precision=precision || @start.date_precision
  end

  def include?(date)
    i=DPrecision.to_p(@start,@precision)
    d=DPrecision.to_p(date,@precision)
    while i<=d
      return true if i.eql?(d)
      i=i+@interval
    end
    false
  end

  def to_s
    "every #{@interval} #{@precision.label.downcase}s starting #{Runt.format_date(@start)}"
  end

end

我会尝试提供精度而不是接受默认的 nil。

> runt_pattern = Runt::EveryTE.new(start_at, 600,Runt::DPrecision::Precision.sec)

这是精度的完整列表(在DPrecision 类中):

Precision.year
Precision.month
Precision.week
Precision.day
Precision.hour
Precision.min
Precision.sec
Precision.millisec
于 2013-02-14T01:48:22.627 回答