aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/time/behavior.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/core_ext/time/behavior.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/time/behavior.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/activesupport/lib/active_support/core_ext/time/behavior.rb b/activesupport/lib/active_support/core_ext/time/behavior.rb
deleted file mode 100644
index a5c0baacdf..0000000000
--- a/activesupport/lib/active_support/core_ext/time/behavior.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-module ActiveSupport #:nodoc:
- module CoreExtensions #:nodoc:
- module Time #:nodoc:
- module Behavior
- # Enable more predictable duck-typing on Time-like classes. See
- # Object#acts_like?.
- def acts_like_time?
- true
- end
- end
- end
- end
-end