Class: ActiveSupport::StringInquirer

Inherits:
String show all
Defined in:
lib/hyperloop/active_support_string_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

Method Summary

Methods inherited from String

#to_json

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/hyperloop/active_support_string_inquirer.rb', line 24

def method_missing(method_name, *arguments)
  if method_name[-1] == "?"
    self == method_name[0..-2]
  else
    super
  end
end