Class: ActiveSupport::StringInquirer
- Defined in:
- lib/gems/activesupport-2.2.2/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?
Instance Method Summary collapse
Methods inherited from String
#/, #blank?, #camel_case, #censor, #censor_words, #censor_words!, #censored?, #compress_lines, #constantize, #crc32_ITU_T, #dresner, #dresner!, #each, #escape_regexp, #hexdigest, #hexdigest!, #humanize, #is_roman_numeral?, #jumble, #jumble!, #margin, #metaphone, #methodize, #plural, randomize, #relative_path_from, #similarity, #singular, #snake_case, #soundex, #t, #to_const_path, #to_const_string, #to_i_roman, #to_json, #to_xs, translate, translations, #truncate, #truncate!, #unescape_regexp, #uri_escape, #uri_unescape
Methods included from CoreExtensions::String::Multibyte
Methods included from CoreExtensions::String::Behavior
Methods included from CoreExtensions::String::Iterators
Methods included from CoreExtensions::String::StartsEndsWith
append_features, #ends_with?, #starts_with?
Methods included from CoreExtensions::String::Inflections
#camelize, #classify, #constantize, #dasherize, #demodulize, #foreign_key, #humanize, #parameterize, #pluralize, #singularize, #tableize, #titleize, #underscore
Methods included from CoreExtensions::String::Filters
Methods included from CoreExtensions::String::Conversions
#ord, #to_date, #to_datetime, #to_time
Methods included from CoreExtensions::String::Access
#at, #first, #from, #last, #to
Methods included from English::StyleORM::Replace
#camelize!, #classify!, #dasherize!, #foreign_key!, #humanize!, #tableize!, #titleize!, #underscore!
Methods included from English::StyleORM
#camelize, #classify, #dasherize, #foreign_key, #humanize, #tableize, #titleize, #underscore
Methods included from English::String
#brief, #each_word_with_range, #fold, #word_filter, #word_filter!, #word_wrap, #word_wrap!, #words
Methods included from English::Style::Replace
#camelcase!, #capitalcase!, #capitalize!, #demodulize!, #downcase!, #dresner!, #jumble!, #lowercase!, #methodize!, #modulize!, #ordinalize!, #pathize!, #snakecase!, #subcamelcase!, #titlecase!, #uncapitalcase!, #upcase!, #uppercase!
Methods included from English::Style
#camelcase, #capitalcase, #capitalize, #demodulize, #downcase, #dresner, #jumble, #lowercase, #methodize, #modulize, #ordinalize, #pathize, #snakecase, #subcamelcase, #titlecase, #uncapitalize, #upcase, #uppercase
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/gems/activesupport-2.2.2/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 |