diff options
author | okuramasafumi <masafumi.o1988@gmail.com> | 2019-04-07 11:47:20 +0900 |
---|---|---|
committer | okuramasafumi <masafumi.o1988@gmail.com> | 2019-04-16 10:19:26 +0900 |
commit | f37e6c0e5814b5d2bc6c3038659c713c172bedbd (patch) | |
tree | cc4d94517b970d13b36bfd812b1e2beff99c5e5a /activesupport | |
parent | c9e4c848eeeb8999b778fa1ae52185ca5537fffe (diff) | |
download | rails-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.rb | 2 |
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 |