diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-22 14:11:12 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-22 14:11:12 +0000 |
commit | 752f9ab8739bef4d7acab21af5858f5d5d9db6eb (patch) | |
tree | dd19c8833a36888011813ea4ef5794a84079b12a | |
parent | 51bb090d867fbf3606dfd4113dc228529e12112e (diff) | |
download | rails-752f9ab8739bef4d7acab21af5858f5d5d9db6eb.tar.gz rails-752f9ab8739bef4d7acab21af5858f5d5d9db6eb.tar.bz2 rails-752f9ab8739bef4d7acab21af5858f5d5d9db6eb.zip |
Fixed path problem
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@743 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rwxr-xr-x | activesupport/lib/active_support/breakpoint.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/breakpoint.rb b/activesupport/lib/active_support/breakpoint.rb index 42dd0bad81..55c97b95e9 100755 --- a/activesupport/lib/active_support/breakpoint.rb +++ b/activesupport/lib/active_support/breakpoint.rb @@ -16,7 +16,7 @@ # license please contact me.
require 'irb'
-require 'binding_of_caller'
+require File.dirname(__FILE__) + '/binding_of_caller'
require 'drb'
require 'drb/acl'
|