[Source]
# File vendor/rails/activesupport/lib/active_support/string_inquirer.rb, line 3 3: def method_missing(method_name, *arguments) 4: if method_name.to_s.ends_with?("?") 5: self == method_name.to_s[0..-2] 6: else 7: super 8: end 9: end
[Validate]