我希望能夠比較Rails中的日期和時間,而無需總是調用to_time或to_date方法。所以我寫了下面的代碼:Rails中的日期/時間比較
class Date
def ==(other)
if other.kind_of?(Time)
self.to_time == other
else
super(other)
end
end
end
我知道有一個簡單的方法來寫,這樣我可以使這個工作>,<,> =,< =和< =>。但我忘了如何:P任何想法?
這是我正在尋找的答案。謝謝! – gsmendoza 2009-02-13 07:13:16