aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2010-02-25 09:28:18 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2010-02-25 09:28:18 -0800
commit6b12d74026808a3014f1dff34481006a96e0f18f (patch)
treef4c4b21968d0b45ecf0b30dc2bbc916bed0466e9 /activesupport/lib/active_support/core_ext
parentbf0f14579aa793f2ab29ec092c517d04e702dbe3 (diff)
downloadrails-6b12d74026808a3014f1dff34481006a96e0f18f.tar.gz
rails-6b12d74026808a3014f1dff34481006a96e0f18f.tar.bz2
rails-6b12d74026808a3014f1dff34481006a96e0f18f.zip
Commented metaprogramming turned out to be noisier not clearer
Diffstat (limited to 'activesupport/lib/active_support/core_ext')
-rw-r--r--activesupport/lib/active_support/core_ext/proc.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/core_ext/proc.rb b/activesupport/lib/active_support/core_ext/proc.rb
index d50076a01e..71b413a88a 100644
--- a/activesupport/lib/active_support/core_ext/proc.rb
+++ b/activesupport/lib/active_support/core_ext/proc.rb
@@ -5,9 +5,9 @@ class Proc #:nodoc:
block, time = self, Time.now
object.class_eval do
method_name = "__bind_#{time.to_i}_#{time.usec}"
- define_method(method_name, &block) # define_method("__bind_1230458026_720454", &block)
- method = instance_method(method_name) # method = instance_method("__bind_1230458026_720454")
- remove_method(method_name) # remove_method("__bind_1230458026_720454")
+ define_method(method_name, &block)
+ method = instance_method(method_name)
+ remove_method(method_name)
method
end.bind(object)
end