OSDN Git Service

Upgrade Redmine 1.2.1
[redminele/redminele.git] / ruby / lib / ruby / gems / 1.8 / gems / activesupport-2.3.12 / lib / active_support / core_ext / string / 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