diff options
author | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2013-04-13 11:56:19 -0500 |
---|---|---|
committer | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2013-04-13 11:56:19 -0500 |
commit | 364f579b8ca43246a8f782a465c766f2f33a2ac4 (patch) | |
tree | d1ad025151817baed8910b37c34a69c72d482441 | |
parent | fb7a8c1423f5c900cc006d2bfc70d82970b6c98b (diff) | |
download | rails-364f579b8ca43246a8f782a465c766f2f33a2ac4.tar.gz rails-364f579b8ca43246a8f782a465c766f2f33a2ac4.tar.bz2 rails-364f579b8ca43246a8f782a465c766f2f33a2ac4.zip |
Add :nodoc: mark to PerThreadRegistry#method_missing [ci skip]
-rw-r--r-- | activesupport/lib/active_support/per_thread_registry.rb | 2 |
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| |