aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/date/acts_like.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-21 03:43:43 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-21 04:35:16 -0700
commitc43dec888a4823b36ee4369be0558b94d475d734 (patch)
tree42decf21f3734bd724db0fa15d8dcb766331c7d6 /activesupport/lib/active_support/core_ext/date/acts_like.rb
parentbd28c7b1b8a569d431cc93924ad1ff5fdb59f401 (diff)
downloadrails-c43dec888a4823b36ee4369be0558b94d475d734.tar.gz
rails-c43dec888a4823b36ee4369be0558b94d475d734.tar.bz2
rails-c43dec888a4823b36ee4369be0558b94d475d734.zip
Convert date extension modules to class reopens
Diffstat (limited to 'activesupport/lib/active_support/core_ext/date/acts_like.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/date/acts_like.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/date/acts_like.rb b/activesupport/lib/active_support/core_ext/date/acts_like.rb
new file mode 100644
index 0000000000..ea6cb38973
--- /dev/null
+++ b/activesupport/lib/active_support/core_ext/date/acts_like.rb
@@ -0,0 +1,9 @@
+require 'date'
+
+class Date
+ # Enable more predictable duck-typing on Date-like classes. See
+ # Object#acts_like?.
+ def acts_like_date?
+ true
+ end
+end