Class: ActiveSupport::StringInquirer
- Inherits:
-
String
- Object
- String
- ActiveSupport::StringInquirer
- Defined in:
- lib/attribute_inquiry/inquirer.rb
Overview
Wrapping a string in this class gives you a prettier way to test for equality. The value returned by Rails.env is wrapped in a StringInquirer object, so instead of calling this:
Rails.env == 'production'
you can call this:
Rails.env.production?
Instantiating a new StringInquirer
vehicle = ActiveSupport::StringInquirer.new('car')
vehicle.car? # => true
vehicle.bike? # => false
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method_name, *arguments) ⇒ Object (private)
24 25 26 27 28 29 30 |
# File 'lib/attribute_inquiry/inquirer.rb', line 24 def method_missing(method_name, *arguments) if method_name[-1] == '?' self == method_name[0..-2] else super end end |