aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/date_time
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2018-03-31 18:16:32 +0300
committerbogdanvlviv <bogdanvlviv@gmail.com>2018-03-31 18:20:46 +0300
commit4e68b159d5696ca58c015a790ef3ceacb90b27c1 (patch)
treeb08452ca48f359ed55c9e56b0f294966c8134b3a /activesupport/lib/active_support/core_ext/date_time
parentb1a0ab179f23888eaadacd8292cbcec49ab06fdf (diff)
downloadrails-4e68b159d5696ca58c015a790ef3ceacb90b27c1.tar.gz
rails-4e68b159d5696ca58c015a790ef3ceacb90b27c1.tar.bz2
rails-4e68b159d5696ca58c015a790ef3ceacb90b27c1.zip
Move implementation of `before?` and `after?` to `DateAndTime::Calculations`
This prevents duplication of code. Prevent duplication of tests by moving them to `DateAndTimeBehavior`. Related to #32185.
Diffstat (limited to 'activesupport/lib/active_support/core_ext/date_time')
-rw-r--r--activesupport/lib/active_support/core_ext/date_time/calculations.rb2
1 files changed, 0 insertions, 2 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 eace125883..e61b23f842 100644
--- a/activesupport/lib/active_support/core_ext/date_time/calculations.rb
+++ b/activesupport/lib/active_support/core_ext/date_time/calculations.rb
@@ -208,6 +208,4 @@ class DateTime
super
end
end
- alias_method :before?, :<
- alias_method :after?, :>
end