Sha256: b226c781656deb49e424d96259faa16a810ede8f10b429a8077a2d099222ab69

Contents?: true

Size: 528 Bytes

Versions: 7

Compression:

Stored size: 528 Bytes

Contents

# Copyright (C) 2010 Rocky Bernstein <rockyb@rubyforge.net>
class Trepan
  attr_accessor :trace_filter # Procs/Methods we ignore.
  attr_accessor :intf
  def initialize(opts={})
    @trace_filter = []
    @intf = []
  end
  class MockDebugger
    attr_reader :initial_dir
    attr_accessor :intf
    def initialize(settings={})
      @initial_dir = '.'
    end
  end
  class MockCore
    attr_accessor :dbgr
    attr_reader   :core
    def initialize
      @dbgr = MockDebugger.new
    end
    def event; 'line' end
  end 
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
trepanning-2.15.35 app/mock.rb
trepanning-1.93.35 app/mock.rb
trepanning-2.15.33 app/mock.rb
trepanning-1.93.32 app/mock.rb
trepanning-0.1.6 app/mock.rb
trepanning-0.1.4 app/mock.rb
trepanning-0.1.3 app/mock.rb