In Files

  • power_assert-2.0.1/lib/power_assert/context.rb

PowerAssert::TraceContext

Public Class Methods

new(binding) click to toggle source
 
               # File power_assert-2.0.1/lib/power_assert/context.rb, line 206
def initialize(binding)
  target_frame, *base = PowerAssert.app_caller_locations
  super(base.length)
  path = target_frame.path
  lineno = target_frame.lineno
  if File.exist?(path)
    line = File.open(path) {|fp| fp.each_line.drop(lineno - 1).first }
    @parser = Parser.new(line, path, lineno, binding)
  else
    @parser = Parser::DUMMY
  end
end
            

Public Instance Methods

disable() click to toggle source
 
               # File power_assert-2.0.1/lib/power_assert/context.rb, line 224
def disable
  @trace_return.disable
end
            
enable() click to toggle source
 
               # File power_assert-2.0.1/lib/power_assert/context.rb, line 219
def enable
  @fired = true
  @trace_return.enable
end
            
enabled?() click to toggle source
 
               # File power_assert-2.0.1/lib/power_assert/context.rb, line 228
def enabled?
  @trace_return.enabled?
end
            
There is an updated format of the API docs for this version here.