Displaying 1 result from an estimated 1 matches for "remaining_to".
Did you mean:
remaining_mb
2013 Apr 28
2
[ActiveSupport] Add a "remaining_to" method to date class
Just that:
class Date
> def remaining_to(date)
> if date.acts_like? :date
> date - self
> end
> end
>
alias :days_to
end
and then be able to do this:
Date.today.remaining_to(Date.parse ''2014-04-02'').days.seconds
--
You received this message because you are subscribed to the Googl...