aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/date_time/calculations.rb
diff options
context:
space:
mode:
authorGilad Zohari <gzohari@gmail.com>2013-07-31 13:57:25 +0300
committerGilad Zohari <gzohari@gmail.com>2013-07-31 13:57:25 +0300
commit89060b8ef9b56e69e5f28754b5b633f6c8b8c909 (patch)
treecd0f9917e23e0d811c53b7afce58217aee0c1535 /activesupport/lib/active_support/core_ext/date_time/calculations.rb
parentffb680e121b1868c184381882b083290db230d78 (diff)
downloadrails-89060b8ef9b56e69e5f28754b5b633f6c8b8c909.tar.gz
rails-89060b8ef9b56e69e5f28754b5b633f6c8b8c909.tar.bz2
rails-89060b8ef9b56e69e5f28754b5b633f6c8b8c909.zip
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.
Diffstat (limited to 'activesupport/lib/active_support/core_ext/date_time/calculations.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/date_time/calculations.rb10
1 files changed, 0 insertions, 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)