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