diff options
author | Xavier Noria <fxn@hashref.com> | 2011-12-25 11:11:23 -0800 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-12-25 11:11:50 -0800 |
commit | 748725e9ce081f6517c68d8f74d254e2079d0d79 (patch) | |
tree | 1d3ae4c1e1aaef6659946fbe24b75e16629d2b87 /railties/guides/source | |
parent | 40bda760675f7cd05d44c66c6daf1f95161a15de (diff) | |
download | rails-748725e9ce081f6517c68d8f74d254e2079d0d79.tar.gz rails-748725e9ce081f6517c68d8f74d254e2079d0d79.tar.bz2 rails-748725e9ce081f6517c68d8f74d254e2079d0d79.zip |
removes the compatibility method Module#method_names
Diffstat (limited to 'railties/guides/source')
-rw-r--r-- | railties/guides/source/active_support_core_extensions.textile | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/railties/guides/source/active_support_core_extensions.textile b/railties/guides/source/active_support_core_extensions.textile index f10830e0c6..1c82a2941f 100644 --- a/railties/guides/source/active_support_core_extensions.textile +++ b/railties/guides/source/active_support_core_extensions.textile @@ -935,12 +935,6 @@ In the previous example the macro generates +avatar_size+ rather than +size+. NOTE: Defined in +active_support/core_ext/module/delegation.rb+ -h4. Method Names - -The builtin method +methods+ returns method names as strings or symbols depending on the Ruby version. Active Support defines +method_names+ to be equivalent, but always getting strings back. - -NOTE: Defined in +active_support/core_ext/module/method_names.rb+ - h4. Redefining Methods There are cases where you need to define a method with +define_method+, but don't know whether a method with that name already exists. If it does, a warning is issued if they are enabled. No big deal, but not clean either. |