aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-06-21 13:43:09 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-06-21 13:43:09 -0700
commit6688cd2b44edb8874c26ae2a54e90620a7e186fe (patch)
tree3c5a505632f21b67c49be8852738156f34f07c20
parent188cc90af9b29d5520564af7bd7bbcdc647953ca (diff)
parent1cb2cb8bea85fedbb6594f1e79186646c8072d3c (diff)
downloadrails-6688cd2b44edb8874c26ae2a54e90620a7e186fe.tar.gz
rails-6688cd2b44edb8874c26ae2a54e90620a7e186fe.tar.bz2
rails-6688cd2b44edb8874c26ae2a54e90620a7e186fe.zip
Merge pull request #6815 from frodsan/add_nodoc_attrmethodmatcher
add :nodoc: to AM::AttributeMethods::AttributeMethodMatcher
-rw-r--r--activemodel/lib/active_model/attribute_methods.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/attribute_methods.rb b/activemodel/lib/active_model/attribute_methods.rb
index b5b50847c2..6e93fdd625 100644
--- a/activemodel/lib/active_model/attribute_methods.rb
+++ b/activemodel/lib/active_model/attribute_methods.rb
@@ -314,7 +314,7 @@ module ActiveModel
RUBY
end
- class AttributeMethodMatcher
+ class AttributeMethodMatcher #:nodoc:
attr_reader :prefix, :suffix, :method_missing_target
AttributeMethodMatch = Struct.new(:target, :attr_name, :method_name)