mirror of
https://github.com/github/rails.git
synced 2026-02-10 22:25:02 -05:00
12 lines
236 B
Ruby
12 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
|