Class: ActiveSupport::StringInquirer
- Defined in:
- lib/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?
Constant Summary
Constants included from Term::ANSIColor
Term::ANSIColor::ATTRIBUTES, Term::ANSIColor::ATTRIBUTE_NAMES, Term::ANSIColor::COLORED_REGEXP, Term::ANSIColor::VERSION, Term::ANSIColor::VERSION_ARRAY, Term::ANSIColor::VERSION_BUILD, Term::ANSIColor::VERSION_MAJOR, Term::ANSIColor::VERSION_MINOR
Instance Method Summary collapse
Methods inherited from String
#acts_like_string?, #as_json, #at, #blank?, #camelize, #classify, #constantize, #dasherize, #demodulize, #encode_json, #encoding_aware?, #exclude?, #first, #foreign_key, #from, #html_safe, #html_safe!, #humanize, #is_utf8?, #last, #mb_chars, #ord, #parameterize, #pluralize, #singularize, #squish, #squish!, #tableize, #titleize, #to, #to_date, #to_datetime, #to_time, #truncate, #underscore
Methods included from CSD::Extensions::Core::String
Methods included from Term::ANSIColor
attributes, coloring=, coloring?, #uncolored
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method_name, *arguments) ⇒ Object
13 14 15 16 17 18 19 |
# File 'lib/active_support/string_inquirer.rb', line 13 def method_missing(method_name, *arguments) if method_name.to_s[-1,1] == "?" self == method_name.to_s[0..-2] else super end end |