aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/breakpoint.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-02-20 22:28:11 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-02-20 22:28:11 +0000
commit1402bb7a25911e39e1fc00076ccd649af77e9e46 (patch)
tree12b73f30ea5f7238f3a9d88ec63754e6edfc05a7 /railties/lib/breakpoint.rb
parentba309a3e38297dfb79fa574555a1b8a003b04d1a (diff)
downloadrails-1402bb7a25911e39e1fc00076ccd649af77e9e46.tar.gz
rails-1402bb7a25911e39e1fc00076ccd649af77e9e46.tar.bz2
rails-1402bb7a25911e39e1fc00076ccd649af77e9e46.zip
Upgraded to breakpoint 92
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@721 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib/breakpoint.rb')
-rw-r--r--railties/lib/breakpoint.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/railties/lib/breakpoint.rb b/railties/lib/breakpoint.rb
index 1923d49733..42dd0bad81 100644
--- a/railties/lib/breakpoint.rb
+++ b/railties/lib/breakpoint.rb
@@ -21,7 +21,7 @@ require 'drb'
require 'drb/acl'
module Breakpoint
- id = %q$Id: breakpoint.rb 41 2005-01-22 20:22:10Z flgr $
+ id = %q$Id: breakpoint.rb 92 2005-02-04 22:35:53Z flgr $
Version = id.split(" ")[2].to_i
extend self
@@ -122,6 +122,7 @@ module Breakpoint
# in the context of the client.
class Client
def initialize(eval_handler) # :nodoc:
+ eval_handler.untaint
@eval_handler = eval_handler
end
@@ -288,6 +289,8 @@ module Breakpoint
def collision
sleep(0.5) until @collision_handler
+ @collision_handler.untaint
+
@collision_handler.call
end
@@ -299,6 +302,7 @@ module Breakpoint
sleep(0.5) until @handler
+ @handler.untaint
@handler.call(workspace, message)
end
@@ -456,6 +460,7 @@ module IRB # :nodoc:
old_CurrentContext
end
end
+ def IRB.parse_opts() end
class Context
alias :old_evaluate :evaluate