From 1ce803d0910d57bfd8b40d5cdbf4bef650bad626 Mon Sep 17 00:00:00 2001 From: Francesco Rodriguez Date: Thu, 21 Jun 2012 16:40:17 -0500 Subject: [PATCH] add :nodoc: to AM::AttributeMethods#instance_method_already_implemented? [ci skip] --- activemodel/lib/active_model/attribute_methods.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activemodel/lib/active_model/attribute_methods.rb b/activemodel/lib/active_model/attribute_methods.rb index 6e93fdd625117..a5c902688647c 100644 --- a/activemodel/lib/active_model/attribute_methods.rb +++ b/activemodel/lib/active_model/attribute_methods.rb @@ -258,7 +258,7 @@ def generated_attribute_methods #:nodoc: end protected - def instance_method_already_implemented?(method_name) + def instance_method_already_implemented?(method_name) #:nodoc: generated_attribute_methods.method_defined?(method_name) end