Sha256: 8049150694a09984139a99d4f441e0383e6198742396197ae33ca97307f9cf89
Contents?: true
Size: 236 Bytes
Versions: 20
Compression:
Stored size: 236 Bytes
Contents
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
Version data entries
20 entries across 20 versions & 5 rubygems