1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

add example to ActiveModel::Naming#model_name [ci skip]

This commit is contained in:
Francesco Rodriguez 2012-07-27 23:38:34 -05:00
parent 36ebafdce9
commit b8e4f7155b

View file

@ -220,6 +220,14 @@ module ActiveModel
# Returns an ActiveModel::Name object for module. It can be
# used to retrieve all kinds of naming-related information
# (See ActiveModel::Name for more information).
#
# class Person < ActiveModel::Model
# end
#
# Person.model_name # => Person
# Person.model_name.class # => ActiveModel::Name
# Person.model_name.singular # => "person"
# Person.model_name.plural # => "people"
def model_name
@_model_name ||= begin
namespace = self.parents.detect do |n|