blob: 65545748df58dd682424b856f76c605e77ad16a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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
|