aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/per_thread_registry.rb
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-04-13 11:56:19 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-04-13 11:56:19 -0500
commit364f579b8ca43246a8f782a465c766f2f33a2ac4 (patch)
treed1ad025151817baed8910b37c34a69c72d482441 /activesupport/lib/active_support/per_thread_registry.rb
parentfb7a8c1423f5c900cc006d2bfc70d82970b6c98b (diff)
downloadrails-364f579b8ca43246a8f782a465c766f2f33a2ac4.tar.gz
rails-364f579b8ca43246a8f782a465c766f2f33a2ac4.tar.bz2
rails-364f579b8ca43246a8f782a465c766f2f33a2ac4.zip
Add :nodoc: mark to PerThreadRegistry#method_missing [ci skip]
Diffstat (limited to 'activesupport/lib/active_support/per_thread_registry.rb')
-rw-r--r--activesupport/lib/active_support/per_thread_registry.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/per_thread_registry.rb b/activesupport/lib/active_support/per_thread_registry.rb
index 79ff61ca90..e9499600a4 100644
--- a/activesupport/lib/active_support/per_thread_registry.rb
+++ b/activesupport/lib/active_support/per_thread_registry.rb
@@ -34,7 +34,7 @@ module ActiveSupport
module PerThreadRegistry
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.
singleton_class.class_eval do
define_method(name) do |*a, &b|