From 58f920fecd5133611294412ae7e61592cc809939 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 17 Jan 2005 17:01:35 +0000 Subject: Made methods class level methods again git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@445 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/lib/binding_of_caller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activesupport') diff --git a/activesupport/lib/binding_of_caller.rb b/activesupport/lib/binding_of_caller.rb index f58e87796c..759e760016 100644 --- a/activesupport/lib/binding_of_caller.rb +++ b/activesupport/lib/binding_of_caller.rb @@ -2,7 +2,7 @@ begin require 'simplecc' rescue LoadError class Continuation #:nodoc: - def create(*args, &block) + def self.create(*args, &block) cc = nil; result = callcc {|c| cc = c; block.call(cc) if block and args.empty?} result ||= args return *[cc, *result] @@ -36,7 +36,7 @@ class Binding #:nodoc: # If you don't do this an Exception will be raised. Because of # the way that Binding.of_caller is implemented it has to be # done this way. - def of_caller(&block) + def self.of_caller(&block) old_critical = Thread.critical Thread.critical = true count = 0 -- cgit v1.2.3