Class: ActiveSupport::StringInquirer
- Defined in:
- activesupport/lib/active_support/string_inquirer.rb
Overview
Constant Summary
Constants inherited from String
Method Summary
Methods inherited from String
#acts_like_string?, #as_json, #at, #blank?, #camelize, #classify, #constantize, #dasherize, #deconstantize, #demodulize, #exclude?, #first, #foreign_key, #from, #html_safe, #humanize, #in_time_zone, #indent, #indent!, #inquiry, #is_utf8?, #last, #mb_chars, #parameterize, #pluralize, #remove, #remove!, #safe_constantize, #singularize, #squish, #squish!, #strip_heredoc, #tableize, #titleize, #to, #to_date, #to_datetime, #to_time, #truncate, #underscore
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method_name, *arguments) ⇒ Object (private)
18 19 20 21 22 23 24 |
# File 'activesupport/lib/active_support/string_inquirer.rb', line 18 def method_missing(method_name, *arguments) if method_name[-1] == '?' self == method_name[0..-2] else super end end |