From 89060b8ef9b56e69e5f28754b5b633f6c8b8c909 Mon Sep 17 00:00:00 2001 From: Gilad Zohari Date: Wed, 31 Jul 2013 13:57:25 +0300 Subject: Remove duplication from date_time calculations Methods: :past? and :future? are already defined identically in date_and_time/calculations.rb which is included in Date. Because DateTime is a subclass of Date, it can call them. --- .../lib/active_support/core_ext/date_time/calculations.rb | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/activesupport/lib/active_support/core_ext/date_time/calculations.rb b/activesupport/lib/active_support/core_ext/date_time/calculations.rb index c288a1f9bd..8e5d723074 100644 --- a/activesupport/lib/active_support/core_ext/date_time/calculations.rb +++ b/activesupport/lib/active_support/core_ext/date_time/calculations.rb @@ -10,16 +10,6 @@ class DateTime end end - # Tells whether the DateTime object's datetime lies in the past. - def past? - self < ::DateTime.current - end - - # Tells whether the DateTime object's datetime lies in the future. - def future? - self > ::DateTime.current - end - # Seconds since midnight: DateTime.now.seconds_since_midnight. def seconds_since_midnight sec + (min * 60) + (hour * 3600) -- cgit v1.2.3