mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
AS guide: adds a real example for #pluralize
This commit is contained in:
@@ -1263,6 +1263,17 @@ The method +pluralize+ returns the plural of its receiver:
|
||||
|
||||
As the previous example shows, Active Support knows some irregular plurals and uncountable nouns. Builtin rules can be extended in +config/initializers/inflections.rb+. That file is generated by the +rails+ command and has instructions in comments.
|
||||
|
||||
Active Record uses this method to compute the default table name that corresponds to a model:
|
||||
|
||||
<ruby>
|
||||
# active_record/base.rb
|
||||
def undecorated_table_name(class_name = base_class.name)
|
||||
table_name = class_name.to_s.demodulize.underscore
|
||||
table_name = table_name.pluralize if pluralize_table_names
|
||||
table_name
|
||||
end
|
||||
</ruby>
|
||||
|
||||
NOTE: Defined in +active_support/core_ext/string/inflections.rb+.
|
||||
|
||||
h3. Extensions to +Numeric+
|
||||
|
||||
Reference in New Issue
Block a user