a5c0baacdf6097b146cc4e1084c43a5f2cebdad7
[depot.git] / behavior.rb
1 module ActiveSupport #:nodoc:
2 module CoreExtensions #:nodoc:
3 module Time #:nodoc:
4 module Behavior
5 # Enable more predictable duck-typing on Time-like classes. See
6 # Object#acts_like?.
7 def acts_like_time?
8 true
9 end
10 end
11 end
12 end
13 end