From f28eef9a272fd9280416fd8c0984f616ffe102fe Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Mon, 15 Jan 2007 17:12:32 +0000 Subject: Add Object#acts_like? and Time#acts_like_time? and Date#acts_like_date? to facilitate duck-typing git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5951 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/lib/active_support/core_ext/date.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'activesupport/lib/active_support/core_ext/date.rb') diff --git a/activesupport/lib/active_support/core_ext/date.rb b/activesupport/lib/active_support/core_ext/date.rb index effb749c25..9d9051dfbe 100644 --- a/activesupport/lib/active_support/core_ext/date.rb +++ b/activesupport/lib/active_support/core_ext/date.rb @@ -1,8 +1,10 @@ require 'date' +require File.dirname(__FILE__) + '/date/behavior' require File.dirname(__FILE__) + '/date/calculations' require File.dirname(__FILE__) + '/date/conversions' class Date#:nodoc: + include ActiveSupport::CoreExtensions::Date::Behavior include ActiveSupport::CoreExtensions::Date::Calculations include ActiveSupport::CoreExtensions::Date::Conversions end -- cgit v1.2.3