aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-12-25 11:02:42 -0800
committerXavier Noria <fxn@hashref.com>2011-12-25 11:11:49 -0800
commit40bda760675f7cd05d44c66c6daf1f95161a15de (patch)
treee6c52868507108545ccaa7a813f8bc90f72ee231 /activesupport/lib/active_support
parent4e1999d20e4135d586135bbd37d4e2a86ca8975b (diff)
downloadrails-40bda760675f7cd05d44c66c6daf1f95161a15de.tar.gz
rails-40bda760675f7cd05d44c66c6daf1f95161a15de.tar.bz2
rails-40bda760675f7cd05d44c66c6daf1f95161a15de.zip
removes the compatibility method Module#instance_method_names
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/core_ext/module/method_names.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/method_names.rb b/activesupport/lib/active_support/core_ext/module/method_names.rb
index 72d7091eb1..1de3089ac6 100644
--- a/activesupport/lib/active_support/core_ext/module/method_names.rb
+++ b/activesupport/lib/active_support/core_ext/module/method_names.rb
@@ -1,8 +1,4 @@
class Module
- def instance_method_names(*args)
- instance_methods(*args).map { |name| name.to_s }
- end
-
def method_names(*args)
methods(*args).map { |name| name.to_s }
end