mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
11 lines
236 B
Ruby
11 lines
236 B
Ruby
module ActiveSupport
|
|
class StringInquirer < String
|
|
def method_missing(method_name, *arguments)
|
|
if method_name.to_s.ends_with?("?")
|
|
self == method_name.to_s[0..-2]
|
|
else
|
|
super
|
|
end
|
|
end
|
|
end
|
|
end
|