Top Level Namespace

Includes:
WEBrick

Defined Under Namespace

Modules: ActionController, ActionView, Breakpoint, DRb, Dependencies, IRB, Prof, Rails Classes: Binding, CGI, CodeStatistics, ControllerGenerator, DispatchServlet, Dispatcher, MailerGenerator, MigrationGenerator, ModelGenerator, Object, RailsFCGIHandler, ScaffoldGenerator, ScaffoldingSandbox, WebServiceGenerator

Constant Summary collapse

SITE_ROOT =
File.join(RAILS_ROOT, 'sites', SITE)
ABSOLUTE_RAILS_ROOT =
File.expand_path(RAILS_ROOT)

Instance Method Summary collapse

Instance Method Details

#assert(&block) ⇒ Object

See Breakpoint.assert



519
520
521
522
523
# File 'lib/breakpoint.rb', line 519

def assert(&block)
  Binding.of_caller do |context|
    Breakpoint.assert(context, &block)
  end
end

#breakpoint(id = nil, &block) ⇒ Object

See Breakpoint.breakpoint



512
513
514
515
516
# File 'lib/breakpoint.rb', line 512

def breakpoint(id = nil, &block)
  Binding.of_caller do |context|
    Breakpoint.breakpoint(id, context, &block)
  end
end