Methods
Public Instance methods
method_missing(method_name, *arguments)
   # File lib/active_support/string_questioneer.rb, line 2
2:   def method_missing(method_name, *arguments)
3:     if method_name.to_s.ends_with?("?")
4:       self == method_name.to_s[0..-2]
5:     else
6:       super
7:     end
8:   end