aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/date.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/core_ext/date.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/date.rb11
1 files changed, 4 insertions, 7 deletions
diff --git a/activesupport/lib/active_support/core_ext/date.rb b/activesupport/lib/active_support/core_ext/date.rb
index 3f56c560b6..6672129076 100644
--- a/activesupport/lib/active_support/core_ext/date.rb
+++ b/activesupport/lib/active_support/core_ext/date.rb
@@ -1,10 +1,7 @@
require 'date'
-require 'active_support/core_ext/date/behavior'
+
+require 'active_support/core_ext/date/acts_like'
+require 'active_support/core_ext/date/freeze'
+
require 'active_support/core_ext/date/calculations'
require 'active_support/core_ext/date/conversions'
-
-class Date#:nodoc:
- include ActiveSupport::CoreExtensions::Date::Behavior
- include ActiveSupport::CoreExtensions::Date::Calculations
- include ActiveSupport::CoreExtensions::Date::Conversions
-end