Class: ActiveSupport::ModelName
- Defined in:
- lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/model_naming.rb
Instance Attribute Summary collapse
-
#cache_key ⇒ Object
readonly
Returns the value of attribute cache_key.
-
#partial_path ⇒ Object
readonly
Returns the value of attribute partial_path.
-
#plural ⇒ Object
readonly
Returns the value of attribute plural.
-
#singular ⇒ Object
readonly
Returns the value of attribute singular.
Instance Method Summary collapse
-
#initialize(name) ⇒ ModelName
constructor
A new instance of ModelName.
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, randomize, #relative_path_from, #similarity, #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
Constructor Details
#initialize(name) ⇒ ModelName
Returns a new instance of ModelName.
5 6 7 8 9 10 11 |
# File 'lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/model_naming.rb', line 5 def initialize(name) super @singular = underscore.tr('/', '_').freeze @plural = @singular.pluralize.freeze @cache_key = tableize.freeze @partial_path = "#{@cache_key}/#{demodulize.underscore}".freeze end |
Instance Attribute Details
#cache_key ⇒ Object (readonly)
Returns the value of attribute cache_key.
3 4 5 |
# File 'lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/model_naming.rb', line 3 def cache_key @cache_key end |
#partial_path ⇒ Object (readonly)
Returns the value of attribute partial_path.
3 4 5 |
# File 'lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/model_naming.rb', line 3 def partial_path @partial_path end |
#plural ⇒ Object (readonly)
Returns the value of attribute plural.
3 4 5 |
# File 'lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/model_naming.rb', line 3 def plural @plural end |
#singular ⇒ Object (readonly)
Returns the value of attribute singular.
3 4 5 |
# File 'lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/model_naming.rb', line 3 def singular @singular end |