Class: ActiveSupport::ModelName

Inherits:
String show all
Defined in:
lib/active_support/core_ext/module/model_naming.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from String

#blank?, #crc32_ITU_T, #to_json, #to_xs

Methods included from CoreExtensions::String::Multibyte

#chars, #is_utf8?, #mb_chars

Methods included from CoreExtensions::String::Behavior

#acts_like_string?

Methods included from CoreExtensions::String::Iterators

append_features, #each_char

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

#squish, #squish!

Methods included from CoreExtensions::String::Conversions

#ord, #to_date, #to_datetime, #to_time

Methods included from CoreExtensions::String::Access

#at, #first, #from, #last, #to

Constructor Details

#initialize(name) ⇒ ModelName

Returns a new instance of ModelName.



5
6
7
8
9
10
11
# File '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_keyObject (readonly)

Returns the value of attribute cache_key.



3
4
5
# File 'lib/active_support/core_ext/module/model_naming.rb', line 3

def cache_key
  @cache_key
end

#partial_pathObject (readonly)

Returns the value of attribute partial_path.



3
4
5
# File 'lib/active_support/core_ext/module/model_naming.rb', line 3

def partial_path
  @partial_path
end

#pluralObject (readonly)

Returns the value of attribute plural.



3
4
5
# File 'lib/active_support/core_ext/module/model_naming.rb', line 3

def plural
  @plural
end

#singularObject (readonly)

Returns the value of attribute singular.



3
4
5
# File 'lib/active_support/core_ext/module/model_naming.rb', line 3

def singular
  @singular
end