class String

def inquiry

env.development? # => false
env.production? # => true
env = 'production'.inquiry

which gives you a prettier way to test for equality.
Wraps the current string in the ActiveSupport::StringInquirer class,
def inquiry
  ActiveSupport::StringInquirer.new(self)
end