mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
AS guide: documents Object#extend_with_included_modules_from
This commit is contained in:
@@ -388,6 +388,27 @@ C.extended_by # => [N, N2, M]
|
||||
|
||||
NOTE: Defined in +active_support/core_ext/object/extending.rb+.
|
||||
|
||||
h5. +extend_with_included_modules_from+
|
||||
|
||||
The method +extend_with_included_modules_from+ extends its receiver with the modules that extend its argument:
|
||||
|
||||
<ruby>
|
||||
module M
|
||||
end
|
||||
|
||||
class C
|
||||
extend M
|
||||
end
|
||||
|
||||
class D
|
||||
end
|
||||
|
||||
D.extend_with_included_modules_from(C)
|
||||
D.extended_by # => [M]
|
||||
</ruby>
|
||||
|
||||
NOTE: Defined in +active_support/core_ext/object/extending.rb+.
|
||||
|
||||
h4. Instance Variables
|
||||
|
||||
Active Support provides several methods to ease access to instance variables.
|
||||
|
||||
Reference in New Issue
Block a user