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