instiki/vendor/rails/activesupport/lib/active_support/string_inquirer.rb

12 lines
236 B
Ruby
Raw Normal View History

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