aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorokuramasafumi <masafumi.o1988@gmail.com>2019-04-07 11:47:20 +0900
committerokuramasafumi <masafumi.o1988@gmail.com>2019-04-16 10:19:26 +0900
commitf37e6c0e5814b5d2bc6c3038659c713c172bedbd (patch)
treecc4d94517b970d13b36bfd812b1e2beff99c5e5a /activesupport
parentc9e4c848eeeb8999b778fa1ae52185ca5537fffe (diff)
downloadrails-f37e6c0e5814b5d2bc6c3038659c713c172bedbd.tar.gz
rails-f37e6c0e5814b5d2bc6c3038659c713c172bedbd.tar.bz2
rails-f37e6c0e5814b5d2bc6c3038659c713c172bedbd.zip
Add `:nodoc` to ActiveSupport::Concern#append_features
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/concern.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/concern.rb b/activesupport/lib/active_support/concern.rb
index 5d356a0ab6..1b997d53c8 100644
--- a/activesupport/lib/active_support/concern.rb
+++ b/activesupport/lib/active_support/concern.rb
@@ -110,7 +110,7 @@ module ActiveSupport
base.instance_variable_set(:@_dependencies, [])
end
- def append_features(base)
+ def append_features(base) #:nodoc:
if base.instance_variable_defined?(:@_dependencies)
base.instance_variable_get(:@_dependencies) << self
false