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

Add :nodoc: mark to PerThreadRegistry#method_missing [ci skip]

This commit is contained in:
Francesco Rodriguez 2013-04-13 11:56:19 -05:00
parent fb7a8c1423
commit 364f579b8c

View file

@ -34,7 +34,7 @@ module ActiveSupport
module PerThreadRegistry module PerThreadRegistry
protected protected
def method_missing(name, *args, &block) def method_missing(name, *args, &block) # :nodoc:
# Caches the method definition as a singleton method of the receiver. # Caches the method definition as a singleton method of the receiver.
singleton_class.class_eval do singleton_class.class_eval do
define_method(name) do |*a, &b| define_method(name) do |*a, &b|