Revised naming.rb and lint.rb

This commit is contained in:
Rizwan Reza 2010-06-14 13:44:49 +04:30
parent c5db6450ec
commit de12b5e616
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
# == Active Model Lint Methods
# == Active Model Lint Tests
#
# You can test whether an object is compliant with the ActiveModel API by
# including <tt>ActiveModel::Lint::Tests</tt> in your TestCase. It will include

View File

@ -1,7 +1,6 @@
require 'active_support/inflector'
module ActiveModel
class Name < String
attr_reader :singular, :plural, :element, :collection, :partial_path
alias_method :cache_key, :collection
@ -35,9 +34,10 @@ module ActiveModel
I18n.translate(defaults.shift, options)
end
end
# ActiveModel::Naming is a module that creates a +model_name+ method on your
# object.
# == Active Model Naming
#
# Creates a +model_name+ method on your object.
#
# To implement, just extend ActiveModel::Naming in your object:
#