aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/string/behavior.rb
blob: 710f1f4670400b3fb5d511e4da7b192905c3059b (plain) (blame)
1
2
3
4
5
6
class String
  # Enables more predictable duck-typing on String-like classes. See <tt>Object#acts_like?</tt>.
  def acts_like_string?
    true
  end
end