Sha256: afbf71d344772597f37f65385f72980ea13523da157132d70369442ff2ce560b

Contents?: true

Size: 467 Bytes

Versions: 7

Compression:

Stored size: 467 Bytes

Contents

# Copyright (C) 2010 Rocky Bernstein <rockyb@rubyforge.net>
class Trepan
  attr_accessor :trace_filter # Procs/Methods we ignore.
  def initialize(opts={})
    @trace_filter = []
  end
  class MockDebugger
    attr_reader :initial_dir
    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-0.1.2 app/mock.rb
trepanning-0.1.1 app/mock.rb
trepanning-0.1.0 app/mock.rb
trepanning-0.0.9 app/mock.rb
trepanning-0.0.8 app/mock.rb
trepanning-0.0.6 app/mock.rb
trepanning-0.0.4 app/mock.rb