Method: String#acts_like_string?

Defined in:
lib/active_support/core_ext/string/behavior.rb

#acts_like_string?Boolean

Enables more predictable duck-typing on String-like classes. See Object#acts_like?.

Returns:

  • (Boolean)

5
6
7
# File 'lib/active_support/core_ext/string/behavior.rb', line 5

def acts_like_string?
  true
end