Class: Breakpoint::DRbService

Inherits:
Object
  • Object
show all
Includes:
DRbUndumped
Defined in:
lib/active_support/breakpoint.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeDRbService

Returns a new instance of DRbService.



282
283
284
285
286
287
# File 'lib/active_support/breakpoint.rb', line 282

def initialize
  @handler = @eval_handler = @collision_handler = nil

  IRB.instance_eval { @CONF[:RC] = true }
  IRB.run_config
end

Instance Attribute Details

#collision_handlerObject

Returns the value of attribute collision_handler.



309
310
311
# File 'lib/active_support/breakpoint.rb', line 309

def collision_handler
  @collision_handler
end

#eval_handlerObject

Returns the value of attribute eval_handler.



309
310
311
# File 'lib/active_support/breakpoint.rb', line 309

def eval_handler
  @eval_handler
end

#handlerObject

Returns the value of attribute handler.



309
310
311
# File 'lib/active_support/breakpoint.rb', line 309

def handler
  @handler
end

Instance Method Details

#add_breakpoint(context, message) ⇒ Object



299
300
301
302
303
304
305
306
307
# File 'lib/active_support/breakpoint.rb', line 299

def add_breakpoint(context, message)
  workspace = IRB::WorkSpace.new(context)
  workspace.extend(DRbUndumped)

  sleep(0.5) until @handler

  @handler.untaint
  @handler.call(workspace, message)
end

#collisionObject



289
290
291
292
293
294
295
# File 'lib/active_support/breakpoint.rb', line 289

def collision
  sleep(0.5) until @collision_handler

  @collision_handler.untaint

  @collision_handler.call
end

#pingObject



297
# File 'lib/active_support/breakpoint.rb', line 297

def ping() end