Sha256: 589a3444522c3aacf88cf140a62983ab0ad300f7b6bd85fac7daaf8383fdf257
Contents?: true
Size: 530 Bytes
Versions: 489
Compression:
Stored size: 530 Bytes
Contents
module ActiveSupport # Wrapping a string in this class gives you a prettier way to test # for equality. The value returned by <tt>Rails.env</tt> is wrapped # in a StringInquirer object so instead of calling this: # # Rails.env == "production" # # you can call this: # # Rails.env.production? # class StringInquirer < String def method_missing(method_name, *arguments) if method_name.to_s[-1,1] == "?" self == method_name.to_s[0..-2] else super end end end end
Version data entries
489 entries across 412 versions & 48 rubygems