diff options
author | Xavier Noria <fxn@hashref.com> | 2010-01-27 22:08:08 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-01-27 22:08:08 +0100 |
commit | 6bdd9cb8f1223dcf09377a8effdcf48b3db2b366 (patch) | |
tree | b30f693d2abef95d78fe0ebc5180c71bfc323aed /railties/guides/source | |
parent | 7a91f3712ca877ca8bc296b95690505062d18791 (diff) | |
download | rails-6bdd9cb8f1223dcf09377a8effdcf48b3db2b366.tar.gz rails-6bdd9cb8f1223dcf09377a8effdcf48b3db2b366.tar.bz2 rails-6bdd9cb8f1223dcf09377a8effdcf48b3db2b366.zip |
AS guide: Object#extend_with_included_modules_from has been removed in ccec730d7f2ccf5e44d3ac2b4b05c7c57af1cfb4
Diffstat (limited to 'railties/guides/source')
-rw-r--r-- | railties/guides/source/active_support_core_extensions.textile | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/railties/guides/source/active_support_core_extensions.textile b/railties/guides/source/active_support_core_extensions.textile index 86c7662bf7..47482ed803 100644 --- a/railties/guides/source/active_support_core_extensions.textile +++ b/railties/guides/source/active_support_core_extensions.textile @@ -363,27 +363,6 @@ See also +Class#subclasses+ in "Extensions to +Class+ FIXME THIS LINK":FIXME. 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. |