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