ruby-debug-base 0.10.4 → 0.10.5.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/AUTHORS +5 -0
- data/CHANGES +17 -0
- data/README +39 -0
- data/Rakefile +67 -82
- data/ext/extconf.rb +11 -8
- data/ext/ruby_debug.c +9 -12
- data/lib/ruby-debug-base.rb +2 -2
- data/lib/ruby-debug-base/version.rb +3 -0
- data/test/base/base.rb +7 -4
- data/test/base/binding.rb +3 -12
- data/test/base/catchpoint.rb +2 -9
- data/test/base/load.rb +44 -0
- data/test/base/reload_bug.rb +2 -2
- metadata +51 -17
- data/VERSION +0 -3
- data/ext/win32/Makefile +0 -157
- data/ext/win32/breakpoint.o +0 -0
- data/ext/win32/ruby_debug.o +0 -0
- data/ext/win32/ruby_debug.so +0 -0
- data/lib/ChangeLog +0 -1162
data/test/base/binding.rb
CHANGED
@@ -1,18 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require 'test/unit'
|
2
|
+
require File.expand_path("../../helper", __FILE__)
|
4
3
|
|
5
4
|
# Test binding_n command
|
6
5
|
class TestBinding < Test::Unit::TestCase
|
7
|
-
|
8
|
-
SRC_DIR = File.expand_path(File.dirname(__FILE__)) unless
|
9
|
-
defined?(SRC_DIR)
|
10
|
-
%w(ext lib).each do |dir|
|
11
|
-
$:.unshift File.join(SRC_DIR, '..', '..', dir)
|
12
|
-
end
|
13
|
-
require File.join(SRC_DIR, '..', '..', 'lib', 'ruby-debug-base')
|
14
|
-
$:.shift; $:.shift
|
15
|
-
|
16
6
|
def test_basic
|
17
7
|
def inside_fn
|
18
8
|
s = 'some other string'
|
@@ -24,8 +14,9 @@ class TestBinding < Test::Unit::TestCase
|
|
24
14
|
Debugger.start
|
25
15
|
b = Kernel::binding_n(0)
|
26
16
|
y = eval('s', b)
|
27
|
-
assert_equal(
|
17
|
+
assert_equal(s, y)
|
28
18
|
inside_fn
|
19
|
+
ensure
|
29
20
|
Debugger.stop
|
30
21
|
end
|
31
22
|
end
|
data/test/base/catchpoint.rb
CHANGED
@@ -1,15 +1,9 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
require
|
2
|
+
require File.expand_path("../../helper", __FILE__)
|
3
3
|
|
4
4
|
# Test catchpoint in C ruby_debug extension.
|
5
5
|
|
6
6
|
class TestRubyDebugCatchpoint < Test::Unit::TestCase
|
7
|
-
|
8
|
-
$:.unshift File.join(File.dirname(__FILE__), '..', '..', 'ext')
|
9
|
-
require 'ruby_debug'
|
10
|
-
$:.shift
|
11
|
-
|
12
|
-
# test current_context
|
13
7
|
def test_catchpoints
|
14
8
|
assert_raise(RuntimeError) {Debugger.catchpoints}
|
15
9
|
Debugger.start_
|
@@ -19,8 +13,7 @@ class TestRubyDebugCatchpoint < Test::Unit::TestCase
|
|
19
13
|
Debugger.add_catchpoint('RuntimeError')
|
20
14
|
assert_equal(['RuntimeError', 'ZeroDivisionError'],
|
21
15
|
Debugger.catchpoints.keys.sort)
|
16
|
+
ensure
|
22
17
|
Debugger.stop
|
23
18
|
end
|
24
|
-
|
25
19
|
end
|
26
|
-
|
data/test/base/load.rb
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require File.expand_path("../../helper", __FILE__)
|
3
|
+
|
4
|
+
# Test of Debugger.debug_load in C extension ruby_debug.so
|
5
|
+
class TestDebugLoad < Test::Unit::TestCase
|
6
|
+
class << self
|
7
|
+
def at_line(file, line)
|
8
|
+
@@at_line = [File.basename(file), line]
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
class Debugger::Context
|
13
|
+
def at_line(file, line)
|
14
|
+
TestDebugLoad::at_line(file, line)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_debug_load
|
19
|
+
src_dir = File.dirname(__FILE__)
|
20
|
+
prog_script = File.join(src_dir, '..', 'example', 'gcd.rb')
|
21
|
+
|
22
|
+
# Without stopping
|
23
|
+
bt = Debugger.debug_load(prog_script, false)
|
24
|
+
assert_equal(nil, bt)
|
25
|
+
assert(Debugger.started?)
|
26
|
+
Debugger.stop
|
27
|
+
|
28
|
+
# With stopping
|
29
|
+
bt = Debugger.debug_load(prog_script, true)
|
30
|
+
assert_equal(nil, bt)
|
31
|
+
assert_equal(['gcd.rb', 4], @@at_line)
|
32
|
+
assert(Debugger.started?)
|
33
|
+
Debugger.stop
|
34
|
+
|
35
|
+
# Test that we get a proper backtrace on a script that raises 'abc'
|
36
|
+
prog_script = File.join(src_dir, '..', 'example', 'raise.rb')
|
37
|
+
bt = Debugger.debug_load(prog_script, false)
|
38
|
+
assert_equal('abc', bt.to_s)
|
39
|
+
assert(Debugger.started?)
|
40
|
+
Debugger.stop
|
41
|
+
ensure
|
42
|
+
Debugger.stop if Debugger.started?
|
43
|
+
end
|
44
|
+
end
|
data/test/base/reload_bug.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
require
|
2
|
+
require File.expand_path("../../helper", __FILE__)
|
3
|
+
|
3
4
|
class TestReloadBug < Test::Unit::TestCase
|
4
5
|
def test_reload_bug
|
5
|
-
top_srcdir = File.join(File.dirname(__FILE__), '..', '..')
|
6
6
|
assert_equal({}, Debugger::source_reload)
|
7
7
|
end
|
8
8
|
end
|
metadata
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-debug-base
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 15424159
|
5
|
+
prerelease: 7
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 10
|
9
|
+
- 5
|
10
|
+
- rc
|
11
|
+
- 1
|
12
|
+
version: 0.10.5.rc1
|
5
13
|
platform: ruby
|
6
14
|
authors:
|
7
15
|
- Kent Sibilev
|
@@ -9,19 +17,38 @@ autorequire:
|
|
9
17
|
bindir: bin
|
10
18
|
cert_chain: []
|
11
19
|
|
12
|
-
date:
|
20
|
+
date: 2011-10-19 00:00:00 -07:00
|
13
21
|
default_executable:
|
14
22
|
dependencies:
|
15
23
|
- !ruby/object:Gem::Dependency
|
16
24
|
name: linecache
|
17
|
-
|
18
|
-
|
19
|
-
|
25
|
+
prerelease: false
|
26
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
20
28
|
requirements:
|
21
29
|
- - ">="
|
22
30
|
- !ruby/object:Gem::Version
|
31
|
+
hash: 13
|
32
|
+
segments:
|
33
|
+
- 0
|
34
|
+
- 3
|
23
35
|
version: "0.3"
|
24
|
-
|
36
|
+
type: :runtime
|
37
|
+
version_requirements: *id001
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: rake-compiler
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
hash: 3
|
47
|
+
segments:
|
48
|
+
- 0
|
49
|
+
version: "0"
|
50
|
+
type: :development
|
51
|
+
version_requirements: *id002
|
25
52
|
description: |
|
26
53
|
ruby-debug is a fast implementation of the standard Ruby debugger debug.rb.
|
27
54
|
It is implemented by utilizing a new Ruby C API hook. The core component
|
@@ -41,21 +68,17 @@ files:
|
|
41
68
|
- CHANGES
|
42
69
|
- LICENSE
|
43
70
|
- README
|
44
|
-
- VERSION
|
45
71
|
- Rakefile
|
46
72
|
- ext/breakpoint.c
|
47
73
|
- ext/extconf.rb
|
48
74
|
- ext/ruby_debug.c
|
49
75
|
- ext/ruby_debug.h
|
50
|
-
- ext/win32/breakpoint.o
|
51
|
-
- ext/win32/ruby_debug.o
|
52
|
-
- ext/win32/ruby_debug.so
|
53
|
-
- ext/win32/Makefile
|
54
|
-
- lib/ChangeLog
|
55
76
|
- lib/ruby-debug-base.rb
|
77
|
+
- lib/ruby-debug-base/version.rb
|
56
78
|
- test/base/base.rb
|
57
79
|
- test/base/binding.rb
|
58
80
|
- test/base/catchpoint.rb
|
81
|
+
- test/base/load.rb
|
59
82
|
- test/base/reload_bug.rb
|
60
83
|
has_rdoc: true
|
61
84
|
homepage: http://rubyforge.org/projects/ruby-debug/
|
@@ -67,21 +90,31 @@ rdoc_options: []
|
|
67
90
|
require_paths:
|
68
91
|
- lib
|
69
92
|
required_ruby_version: !ruby/object:Gem::Requirement
|
93
|
+
none: false
|
70
94
|
requirements:
|
71
95
|
- - ">="
|
72
96
|
- !ruby/object:Gem::Version
|
97
|
+
hash: 51
|
98
|
+
segments:
|
99
|
+
- 1
|
100
|
+
- 8
|
101
|
+
- 2
|
73
102
|
version: 1.8.2
|
74
|
-
version:
|
75
103
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
|
+
none: false
|
76
105
|
requirements:
|
77
|
-
- - "
|
106
|
+
- - ">"
|
78
107
|
- !ruby/object:Gem::Version
|
79
|
-
|
80
|
-
|
108
|
+
hash: 25
|
109
|
+
segments:
|
110
|
+
- 1
|
111
|
+
- 3
|
112
|
+
- 1
|
113
|
+
version: 1.3.1
|
81
114
|
requirements: []
|
82
115
|
|
83
116
|
rubyforge_project: ruby-debug
|
84
|
-
rubygems_version: 1.
|
117
|
+
rubygems_version: 1.6.2
|
85
118
|
signing_key:
|
86
119
|
specification_version: 3
|
87
120
|
summary: Fast Ruby debugger - core component
|
@@ -89,4 +122,5 @@ test_files:
|
|
89
122
|
- test/base/base.rb
|
90
123
|
- test/base/binding.rb
|
91
124
|
- test/base/catchpoint.rb
|
125
|
+
- test/base/load.rb
|
92
126
|
- test/base/reload_bug.rb
|
data/VERSION
DELETED
data/ext/win32/Makefile
DELETED
@@ -1,157 +0,0 @@
|
|
1
|
-
|
2
|
-
SHELL = /bin/sh
|
3
|
-
|
4
|
-
#### Start of system configuration section. ####
|
5
|
-
|
6
|
-
srcdir = ..
|
7
|
-
topdir = /usr/local/ruby-mingw32/lib/ruby/1.8/i386-mingw32
|
8
|
-
hdrdir = $(topdir)
|
9
|
-
VPATH = $(srcdir):$(topdir):$(hdrdir)
|
10
|
-
exec_prefix = $(prefix)
|
11
|
-
prefix = $(DESTDIR)/usr/local/ruby-mingw32
|
12
|
-
sharedstatedir = $(prefix)/com
|
13
|
-
mandir = $(datarootdir)/man
|
14
|
-
psdir = $(docdir)
|
15
|
-
oldincludedir = $(DESTDIR)/usr/include
|
16
|
-
localedir = $(datarootdir)/locale
|
17
|
-
bindir = $(exec_prefix)/bin
|
18
|
-
libexecdir = $(exec_prefix)/libexec
|
19
|
-
sitedir = $(libdir)/ruby/site_ruby
|
20
|
-
htmldir = $(docdir)
|
21
|
-
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
22
|
-
includedir = $(prefix)/include
|
23
|
-
infodir = $(datarootdir)/info
|
24
|
-
vendorlibdir = $(vendordir)/$(ruby_version)
|
25
|
-
sysconfdir = $(prefix)/etc
|
26
|
-
libdir = $(exec_prefix)/lib
|
27
|
-
sbindir = $(exec_prefix)/sbin
|
28
|
-
rubylibdir = $(libdir)/ruby/$(ruby_version)
|
29
|
-
docdir = $(datarootdir)/doc/$(PACKAGE)
|
30
|
-
dvidir = $(docdir)
|
31
|
-
vendordir = $(libdir)/ruby/vendor_ruby
|
32
|
-
datarootdir = $(prefix)/share
|
33
|
-
pdfdir = $(docdir)
|
34
|
-
archdir = $(rubylibdir)/$(arch)
|
35
|
-
sitearchdir = $(sitelibdir)/$(sitearch)
|
36
|
-
datadir = $(datarootdir)
|
37
|
-
localstatedir = $(prefix)/var
|
38
|
-
sitelibdir = $(sitedir)/$(ruby_version)
|
39
|
-
|
40
|
-
CC = i586-mingw32msvc-gcc
|
41
|
-
LIBRUBY = lib$(LIBRUBY_SO).a
|
42
|
-
LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
|
43
|
-
LIBRUBYARG_SHARED = -l$(RUBY_SO_NAME)
|
44
|
-
LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static
|
45
|
-
|
46
|
-
RUBY_EXTCONF_H =
|
47
|
-
CFLAGS = -g -O2 $(cflags)
|
48
|
-
INCFLAGS = -I. -I$(topdir) -I$(hdrdir) -I$(srcdir)
|
49
|
-
DEFS =
|
50
|
-
CPPFLAGS = $(DEFS) $(cppflags)
|
51
|
-
CXXFLAGS = $(CFLAGS)
|
52
|
-
ldflags = -L.
|
53
|
-
dldflags = -Wl,--enable-auto-image-base,--enable-auto-import,--export-all
|
54
|
-
archflag =
|
55
|
-
DLDFLAGS = $(ldflags) $(dldflags) $(archflag)
|
56
|
-
LDSHARED = i586-mingw32msvc-gcc -shared -s
|
57
|
-
AR = i586-mingw32msvc-ar
|
58
|
-
EXEEXT = .exe
|
59
|
-
|
60
|
-
RUBY_INSTALL_NAME = ruby
|
61
|
-
RUBY_SO_NAME = msvcrt-ruby18
|
62
|
-
arch = i386-mingw32
|
63
|
-
sitearch = i386-msvcrt
|
64
|
-
ruby_version = 1.8
|
65
|
-
ruby = /usr/local/ruby-mingw32/bin/ruby
|
66
|
-
RUBY = $(ruby)
|
67
|
-
RM = rm -f
|
68
|
-
MAKEDIRS = mkdir -p
|
69
|
-
INSTALL = /usr/bin/install -c
|
70
|
-
INSTALL_PROG = $(INSTALL) -m 0755
|
71
|
-
INSTALL_DATA = $(INSTALL) -m 644
|
72
|
-
COPY = cp
|
73
|
-
|
74
|
-
#### End of system configuration section. ####
|
75
|
-
|
76
|
-
preload =
|
77
|
-
|
78
|
-
libpath = . $(libdir)
|
79
|
-
LIBPATH = -L. -L$(libdir)
|
80
|
-
DEFFILE =
|
81
|
-
|
82
|
-
CLEANFILES = mkmf.log
|
83
|
-
DISTCLEANFILES =
|
84
|
-
|
85
|
-
extout =
|
86
|
-
extout_prefix =
|
87
|
-
target_prefix =
|
88
|
-
LOCAL_LIBS =
|
89
|
-
LIBS = $(LIBRUBYARG_SHARED) -lshell32 -lwsock32
|
90
|
-
SRCS = ruby_debug.c breakpoint.c
|
91
|
-
OBJS = ruby_debug.o breakpoint.o
|
92
|
-
TARGET = ruby_debug
|
93
|
-
DLLIB = $(TARGET).so
|
94
|
-
EXTSTATIC =
|
95
|
-
STATIC_LIB =
|
96
|
-
|
97
|
-
BINDIR = $(bindir)
|
98
|
-
RUBYCOMMONDIR = $(sitedir)$(target_prefix)
|
99
|
-
RUBYLIBDIR = $(sitelibdir)$(target_prefix)
|
100
|
-
RUBYARCHDIR = $(sitearchdir)$(target_prefix)
|
101
|
-
|
102
|
-
TARGET_SO = $(DLLIB)
|
103
|
-
CLEANLIBS = $(TARGET).so $(TARGET).il? $(TARGET).tds $(TARGET).map
|
104
|
-
CLEANOBJS = *.o *.a *.s[ol] *.pdb *.exp *.bak
|
105
|
-
|
106
|
-
all: $(DLLIB)
|
107
|
-
static: $(STATIC_LIB)
|
108
|
-
|
109
|
-
clean:
|
110
|
-
@-$(RM) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES)
|
111
|
-
|
112
|
-
distclean: clean
|
113
|
-
@-$(RM) Makefile $(RUBY_EXTCONF_H) conftest.* mkmf.log
|
114
|
-
@-$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES)
|
115
|
-
|
116
|
-
realclean: distclean
|
117
|
-
install: install-so install-rb
|
118
|
-
|
119
|
-
install-so: $(RUBYARCHDIR)
|
120
|
-
install-so: $(RUBYARCHDIR)/$(DLLIB)
|
121
|
-
$(RUBYARCHDIR)/$(DLLIB): $(DLLIB)
|
122
|
-
$(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
|
123
|
-
install-rb: pre-install-rb install-rb-default
|
124
|
-
install-rb-default: pre-install-rb-default
|
125
|
-
pre-install-rb: Makefile
|
126
|
-
pre-install-rb-default: Makefile
|
127
|
-
$(RUBYARCHDIR):
|
128
|
-
$(MAKEDIRS) $@
|
129
|
-
|
130
|
-
site-install: site-install-so site-install-rb
|
131
|
-
site-install-so: install-so
|
132
|
-
site-install-rb: install-rb
|
133
|
-
|
134
|
-
.SUFFIXES: .c .m .cc .cxx .cpp .C .o
|
135
|
-
|
136
|
-
.cc.o:
|
137
|
-
$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
138
|
-
|
139
|
-
.cxx.o:
|
140
|
-
$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
141
|
-
|
142
|
-
.cpp.o:
|
143
|
-
$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
144
|
-
|
145
|
-
.C.o:
|
146
|
-
$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
147
|
-
|
148
|
-
.c.o:
|
149
|
-
$(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) -c $<
|
150
|
-
|
151
|
-
$(DLLIB): $(OBJS) Makefile
|
152
|
-
@-$(RM) $@
|
153
|
-
$(LDSHARED) -o $@ $(OBJS) $(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS)
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
$(OBJS): ruby.h defines.h
|
data/ext/win32/breakpoint.o
DELETED
Binary file
|
data/ext/win32/ruby_debug.o
DELETED
Binary file
|
data/ext/win32/ruby_debug.so
DELETED
Binary file
|
data/lib/ChangeLog
DELETED
@@ -1,1162 +0,0 @@
|
|
1
|
-
2010-10-15 14:45 Rocky Bernstein
|
2
|
-
|
3
|
-
* ChangeLog, ruby-debug-base.rb: Go over documentation (1st pass)
|
4
|
-
including that created by rdoc.
|
5
|
-
Better instructions for how to build on MS Windows and the
|
6
|
-
include
|
7
|
-
cross-compile.sh script I use.
|
8
|
-
Update rubyforge URL's used to building ChangeLogs.
|
9
|
-
|
10
|
-
2010-10-14 01:41 Rocky Bernstein
|
11
|
-
|
12
|
-
* ChangeLog: improve list and list - (backwards) handling when
|
13
|
-
hitting end of file.
|
14
|
-
|
15
|
-
2010-09-20 11:06 Rocky Bernstein
|
16
|
-
|
17
|
-
* ChangeLog: "rake test" of ruby-debug gem should now work without
|
18
|
-
requiring or using ruby-debug-base code. Rubyforge tracker
|
19
|
-
#28560.
|
20
|
-
|
21
|
-
2010-09-20 09:33 Rocky Bernstein
|
22
|
-
|
23
|
-
* ChangeLog: Make sure version file is closed. Thanks to Mamoru
|
24
|
-
Tasaka. Tracker #28581.
|
25
|
-
|
26
|
-
2010-09-15 16:58 Rocky Bernstein
|
27
|
-
|
28
|
-
* ChangeLog: Rakefile: make rake --prereqs work if only
|
29
|
-
ruby-debug.tar.gz is used. Add
|
30
|
-
test/config.yml to gem. See tracker #28560.
|
31
|
-
ruby_debug.c: 10.0.4.rc2 now
|
32
|
-
|
33
|
-
2010-09-12 01:30 Rocky Bernstein
|
34
|
-
|
35
|
-
* ChangeLog: pm.rb: spelling mistake
|
36
|
-
|
37
|
-
2010-08-13 05:32 Rocky Bernstein
|
38
|
-
|
39
|
-
* ChangeLog: Add Debugger.inside_emacs? Environment variable EMACS
|
40
|
-
for inside Emacs is deprecated in favor of INSIDE_EMACS.
|
41
|
-
Rubyforge #28465.
|
42
|
-
|
43
|
-
2010-08-02 12:51 Rocky Bernstein
|
44
|
-
|
45
|
-
* ChangeLog: Go over installation instructions for Emacs.
|
46
|
-
Add a basic files, README, INSTALL and AUTHORS.
|
47
|
-
Change version from 0.10.4vc to 0.10.4rc1
|
48
|
-
|
49
|
-
2010-05-06 21:59 Rocky Bernstein
|
50
|
-
|
51
|
-
* ChangeLog: More explicit about incomplete saved frames. Now
|
52
|
-
reads:
|
53
|
-
Warning: saved frames may be incomplete;
|
54
|
-
compare debugger backtrace (bt) with Ruby caller(0).
|
55
|
-
|
56
|
-
2010-04-18 07:18 Rocky Bernstein
|
57
|
-
|
58
|
-
* ruby-debug-base.rb: Fix bug in "reload" command. tracker #26130
|
59
|
-
|
60
|
-
2010-03-21 23:09 Rocky Bernstein
|
61
|
-
|
62
|
-
* ChangeLog: Add ability to start remote debugging on random ports
|
63
|
-
and to query those ports. Tracker #27889 from Hongli Lai.
|
64
|
-
|
65
|
-
2010-03-16 04:23 Rocky Bernstein
|
66
|
-
|
67
|
-
* ChangeLog: Fix for what looks like an optimization bug on 64-bit
|
68
|
-
gcc systems with optimization. The Symptom is that debugger
|
69
|
-
"catch" causes the program to immediately terminate when the Ruby
|
70
|
-
exception is raised. Possibly a problem in using
|
71
|
-
INT2FIX(FIX2INT...)..) and/or possibly a bug in those macros.
|
72
|
-
|
73
|
-
2010-03-12 20:27 Rocky Bernstein
|
74
|
-
|
75
|
-
* ChangeLog: irb.rb: Goodness backported from rbdbgr. Add IRB 'q'
|
76
|
-
for quit and ability to
|
77
|
-
run debugger commands from inside irb via dbgr, e.g. >> dbgr
|
78
|
-
'where'
|
79
|
-
|
80
|
-
kill.rb: remove spurious debug output
|
81
|
-
|
82
|
-
Rakefile: add install targets (backport from rbdbgr)
|
83
|
-
|
84
|
-
2009-11-28 22:56 Rocky Bernstein
|
85
|
-
|
86
|
-
* ChangeLog: Fix problem caused by gdb-ui renamed to gdb-mi.
|
87
|
-
Rubyforge tracker #27152
|
88
|
-
Remove all Emacs byte compile warning messages.
|
89
|
-
|
90
|
-
Note however all of this code will eventually be phased out in
|
91
|
-
favor
|
92
|
-
of emacs-dbgr (on github).
|
93
|
-
|
94
|
-
2009-04-04 14:11 Rocky Bernstein
|
95
|
-
|
96
|
-
* ChangeLog: Make test-save less installation-specific
|
97
|
-
|
98
|
-
2009-03-29 03:00 Rocky Bernstein
|
99
|
-
|
100
|
-
* ChangeLog: Canonicalize breakpoint locations a little better.
|
101
|
-
More work should be done and more work should be done on the
|
102
|
-
testing side too.
|
103
|
-
|
104
|
-
2009-03-11 23:42 Rocky Bernstein
|
105
|
-
|
106
|
-
* ChangeLog: update texinfo for catch
|
107
|
-
|
108
|
-
2008-11-25 02:43 Rocky Bernstein
|
109
|
-
|
110
|
-
* ChangeLog: Frame without a frame number means frame 0, same as
|
111
|
-
gdb. We are now in 0.10.4 territory now.
|
112
|
-
|
113
|
-
2008-11-16 00:14 Rocky Bernstein
|
114
|
-
|
115
|
-
* ChangeLog: Add rdoc for rdebug script.
|
116
|
-
|
117
|
-
2008-11-14 19:28 Rocky Bernstein
|
118
|
-
|
119
|
-
* ruby-debug-base.rb: Go over documentation and revise.
|
120
|
-
|
121
|
-
2008-11-14 15:32 Rocky Bernstein
|
122
|
-
|
123
|
-
* ChangeLog, ruby-debug-base.rb: Move Debugger#debugger from base
|
124
|
-
to cli. Revert code in ruby_debug.c and block parameter in
|
125
|
-
debugger. cf. -> Compare with. Document Debugger.start better.
|
126
|
-
|
127
|
-
2008-11-13 10:29 Rocky Bernstein
|
128
|
-
|
129
|
-
* ChangeLog: Make Debugger.start{block} work if Debugger.started?
|
130
|
-
is false. Second try.
|
131
|
-
|
132
|
-
2008-11-11 02:07 Rocky Bernstein
|
133
|
-
|
134
|
-
* ChangeLog: Tweak truncated stack test since Ruby's caller doesn't
|
135
|
-
seem to include (tail?) recursive calls and we do. Get regression
|
136
|
-
tests working in light of recent changes.
|
137
|
-
|
138
|
-
2008-11-10 01:48 Kent Sibilev
|
139
|
-
|
140
|
-
* ruby-debug-base.rb: a little bit more readable
|
141
|
-
|
142
|
-
2008-11-10 01:35 Kent Sibilev
|
143
|
-
|
144
|
-
* ruby-debug-base.rb: Debugger.start must always call the passed
|
145
|
-
block
|
146
|
-
|
147
|
-
2008-11-07 19:35 Rocky Bernstein
|
148
|
-
|
149
|
-
* ChangeLog: Change truncated frame message.
|
150
|
-
|
151
|
-
2008-11-07 10:39 Rocky Bernstein
|
152
|
-
|
153
|
-
* ChangeLog: Add check to "where" to see if the call stack is
|
154
|
-
truncated; task #2354
|
155
|
-
|
156
|
-
2008-11-06 16:17 Rocky Bernstein
|
157
|
-
|
158
|
-
* ChangeLog: #22698 Allow ruby-debug-base 0.x.y.z be compatible
|
159
|
-
with ruby-debug 0.x.y.
|
160
|
-
|
161
|
-
2008-11-02 21:59 Rocky Bernstein
|
162
|
-
|
163
|
-
* ChangeLog, ruby-debug-base.rb: Debugger.start with a block now
|
164
|
-
stops inside the block. Debugger.debugger with a block works like
|
165
|
-
Debugger.start with a block.
|
166
|
-
|
167
|
-
The whole interface is hopelessly kludgy and needs to be redone.
|
168
|
-
|
169
|
-
2008-10-26 14:54 Rocky Bernstein
|
170
|
-
|
171
|
-
* ChangeLog: Doc typo. Add comment to remind me how to turn off
|
172
|
-
optimizationin extconf.rb
|
173
|
-
|
174
|
-
2008-10-25 16:01 Rocky Bernstein
|
175
|
-
|
176
|
-
* ChangeLog: Warn and add a "confirmation" when setting a
|
177
|
-
breakpoint on a file that is not loaded. Regression tests no
|
178
|
-
longer fail.
|
179
|
-
|
180
|
-
2008-09-22 00:07 Rocky Bernstein
|
181
|
-
|
182
|
-
* ruby-debug-base.rb: #22118 bug in showing variables post mortem.
|
183
|
-
Patch thanks to rubikitch.
|
184
|
-
Update pm.rb integration test.
|
185
|
-
|
186
|
-
2008-09-03 17:29 Rocky Bernstein
|
187
|
-
|
188
|
-
* ChangeLog: Show line numbers when $DEBUG is set. Patch #21772
|
189
|
-
from Martin Krauskopf
|
190
|
-
|
191
|
-
2008-07-07 07:11 Rocky Bernstein
|
192
|
-
|
193
|
-
* ruby-debug-base.rb: Tracker [#20041] start erroneously moved to
|
194
|
-
Kernel - should be in
|
195
|
-
Debugger.start
|
196
|
-
|
197
|
-
2008-06-20 06:46 Rocky Bernstein
|
198
|
-
|
199
|
-
* ruby-debug-base.rb: trace.rb: add "trace var"
|
200
|
-
ruby-debug-base.rb: remove another undefined warning.
|
201
|
-
|
202
|
-
2008-05-24 01:27 Rocky Bernstein
|
203
|
-
|
204
|
-
* ChangeLog: Remove dup lines.
|
205
|
-
|
206
|
-
2008-05-15 16:05 Rocky Bernstein
|
207
|
-
|
208
|
-
* ChangeLog: Handle "catch nnn off" Forgotten there during r656.
|
209
|
-
From mkrauskopf [#20156].
|
210
|
-
|
211
|
-
2008-05-05 18:05 Rocky Bernstein
|
212
|
-
|
213
|
-
* ChangeLog: make test-frame installation independent. Bug #19931
|
214
|
-
|
215
|
-
2008-04-29 13:37 Rocky Bernstein
|
216
|
-
|
217
|
-
* ChangeLog: Test line number in "continue" command for validity.
|
218
|
-
|
219
|
-
2008-04-28 16:16 Rocky Bernstein
|
220
|
-
|
221
|
-
* ChangeLog: From Martin Krauskopf via patch #19779
|
222
|
-
|
223
|
-
Allow folks to configure Ruby used for CLI tests in the
|
224
|
-
test/config.yaml. The defaults are for native Ruby, so nothing
|
225
|
-
needs
|
226
|
-
to be done for ruby-debug.
|
227
|
-
|
228
|
-
Developers of interfaces other than cli might override
|
229
|
-
config.yaml by
|
230
|
-
customized config.private.yaml which is ignored. So there will be
|
231
|
-
no
|
232
|
-
trash in e.g. 'svn st' output when developer customize the Ruby
|
233
|
-
to be
|
234
|
-
used.
|
235
|
-
|
236
|
-
Handy for alternative interface implementations using
|
237
|
-
svn:externals.
|
238
|
-
|
239
|
-
2008-04-22 02:49 Rocky Bernstein
|
240
|
-
|
241
|
-
* ruby-debug-base.rb: Experiment with debugger(steps=0). Puts us in
|
242
|
-
the debugger call, but this may be the best we can do for now.
|
243
|
-
See tracker
|
244
|
-
#19639.
|
245
|
-
|
246
|
-
2008-04-16 01:11 Rocky Bernstein
|
247
|
-
|
248
|
-
* ChangeLog: In 0.10.2 now. Some work to cope systems without
|
249
|
-
readline. More work is needed.
|
250
|
-
Add test of "set autoeval." Undefined command message more
|
251
|
-
closely like gdb's.
|
252
|
-
|
253
|
-
2008-04-10 08:49 Rocky Bernstein
|
254
|
-
|
255
|
-
* ChangeLog: linecache is required by ruby-debug-base not
|
256
|
-
ruby-debug. Thanks Martin!
|
257
|
-
|
258
|
-
2008-04-10 08:00 Rocky Bernstein
|
259
|
-
|
260
|
-
* ChangeLog: Last change before 0.10.1 release.
|
261
|
-
|
262
|
-
2008-04-10 02:03 Rocky Bernstein
|
263
|
-
|
264
|
-
* ChangeLog: Cosmetic stuff: spelling corrections. Update node
|
265
|
-
structure so texinfo
|
266
|
-
doesn't complain.
|
267
|
-
|
268
|
-
2008-04-08 14:52 Rocky Bernstein
|
269
|
-
|
270
|
-
* ChangeLog: autorequire is deprecated and presumably no longer
|
271
|
-
needed
|
272
|
-
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/182827
|
273
|
-
|
274
|
-
2008-04-07 00:36 Rocky Bernstein
|
275
|
-
|
276
|
-
* ChangeLog, ruby-debug-base.rb: ruby-debug-base.rb: document
|
277
|
-
Debugger.start parameters.
|
278
|
-
CHANGES: Revise what's happened
|
279
|
-
test-shortkey.el: A failing regression test because I think
|
280
|
-
rdebug-shortkey-mode
|
281
|
-
is not correct.
|
282
|
-
|
283
|
-
2008-04-03 19:01 Rocky Bernstein
|
284
|
-
|
285
|
-
* ChangeLog, ruby-debug-base.rb: Allow setting :post_mortem => true
|
286
|
-
from Debugger.start.
|
287
|
-
|
288
|
-
2008-03-28 13:53 Rocky Bernstein
|
289
|
-
|
290
|
-
* ChangeLog: Don't unconditionally turn on short-key mode when
|
291
|
-
annotations are on. Use rdebug-short-key-mode setting to decide.
|
292
|
-
|
293
|
-
2008-03-23 17:47 Rocky Bernstein
|
294
|
-
|
295
|
-
* ChangeLog: set.rb -> settings.rb since it's already one command
|
296
|
-
per file, and
|
297
|
-
remove another :nodoc.
|
298
|
-
Rakefile: split long line
|
299
|
-
|
300
|
-
2008-03-18 16:05 Rocky Bernstein
|
301
|
-
|
302
|
-
* ChangeLog: Fix bug in 'list' command when wrapping off the end.
|
303
|
-
test-finish.rb: tolerate buggy in Ruby versions <= 1.8.7.
|
304
|
-
|
305
|
-
2008-03-13 02:15 Rocky Bernstein
|
306
|
-
|
307
|
-
* ruby-debug-base.rb: INCOMPATIBLE CHANGE: "finish" works like gdb
|
308
|
-
- stop just before the
|
309
|
-
most recent method finishes. Will now accept a number which stops
|
310
|
-
that
|
311
|
-
many frames completed. (Note that return line numbers will be
|
312
|
-
funny,
|
313
|
-
the first line of the method until Ruby 1.8.7.)
|
314
|
-
|
315
|
-
2008-03-10 13:28 Rocky Bernstein
|
316
|
-
|
317
|
-
* ChangeLog: Dunno why we are now one line number less. So be it
|
318
|
-
(for now).
|
319
|
-
|
320
|
-
2008-03-09 23:30 Rocky Bernstein
|
321
|
-
|
322
|
-
* ChangeLog: For now we require the duplicate numbers on
|
323
|
-
conditionals.
|
324
|
-
|
325
|
-
2008-03-02 04:20 Rocky Bernstein
|
326
|
-
|
327
|
-
* ruby-debug-base.rb: Better error message for an invalid break
|
328
|
-
command.
|
329
|
-
|
330
|
-
2008-02-28 05:06 Rocky Bernstein
|
331
|
-
|
332
|
-
* ChangeLog: breakpoints.{cmd,right}: test for an invalid stopping
|
333
|
-
line number
|
334
|
-
rdebug-fns.el: move generic split-string-and-unquote from
|
335
|
-
rdebug-core.
|
336
|
-
rdebug-core.el: Add rdebug-common-init to replace
|
337
|
-
gud-common-init. Is
|
338
|
-
simpler, and finds files better via debugger output/annotations.
|
339
|
-
Fix bug in rdebug-setup-windows: gud-find-file can return nil,
|
340
|
-
and
|
341
|
-
we still need to set buf.
|
342
|
-
|
343
|
-
2008-02-27 04:04 Rocky Bernstein
|
344
|
-
|
345
|
-
* ruby-debug-base.rb: Slightly more robust handle_post_mortem.
|
346
|
-
|
347
|
-
2008-02-26 17:31 Rocky Bernstein
|
348
|
-
|
349
|
-
* ChangeLog: Go over source location positioning. 0 is now the
|
350
|
-
oldest (first) position. Add M-S-down and M-S-up for first and
|
351
|
-
last. More tests needed in test-fns.el and need to prompt on wrap
|
352
|
-
around.
|
353
|
-
|
354
|
-
2008-02-26 00:57 Rocky Bernstein
|
355
|
-
|
356
|
-
* ChangeLog: Fix bug in "info file xxx breakpoints".
|
357
|
-
|
358
|
-
2008-02-24 16:36 Rocky Bernstein
|
359
|
-
|
360
|
-
* ChangeLog: rdebug; make more Ruby 1.9 compatible.
|
361
|
-
|
362
|
-
2008-02-24 16:14 Rocky Bernstein
|
363
|
-
|
364
|
-
* ChangeLog: Minor changes.
|
365
|
-
rdbg.rb: don't need $DEBUG test any more
|
366
|
-
rdebug-regexp.el: go over with checkdoc
|
367
|
-
bin/rdebug: use PATH_SEPARATOR (for 'doze again)
|
368
|
-
|
369
|
-
2008-02-24 04:51 Rocky Bernstein
|
370
|
-
|
371
|
-
* ChangeLog: CLI: Add long help for "info file".
|
372
|
-
|
373
|
-
test/test-help.rb: Make test failures easier to fix and more like
|
374
|
-
the
|
375
|
-
other tests.
|
376
|
-
|
377
|
-
emacs/test: finish testing all of the funcitons in rdebug-fns.el
|
378
|
-
|
379
|
-
rdebug-layouts.el: Make checkdoc clean.
|
380
|
-
rdebug-track.el: don't need to rename shell buffer. Do it as an
|
381
|
-
option only.
|
382
|
-
rdebug-secondary.el: get rid of hoaky buffer finding for at least
|
383
|
-
gud-comint-buf. (Should probably do others as well)
|
384
|
-
|
385
|
-
DOC: Note weird line stopping locations. Describe what "ctrl" in
|
386
|
-
prompt means.
|
387
|
-
|
388
|
-
2008-02-21 02:56 Rocky Bernstein
|
389
|
-
|
390
|
-
* ChangeLog: Fringe for frame buffer the same as in source code.
|
391
|
-
Move
|
392
|
-
miscellaneous small functions to a new file. Reduce duplication
|
393
|
-
of
|
394
|
-
"chomp" code.
|
395
|
-
|
396
|
-
2008-02-19 23:44 Rocky Bernstein
|
397
|
-
|
398
|
-
* ChangeLog: rdebug-cmd.el: M-insert toggles shortkey mode in the
|
399
|
-
command buffer
|
400
|
-
rdebug: search for Ruby program if file is not found and no
|
401
|
-
SEPARATOR
|
402
|
-
chars in the filename
|
403
|
-
|
404
|
-
2008-02-18 19:56 Rocky Bernstein
|
405
|
-
|
406
|
-
* ChangeLog: Frame switching shouldn't be recorded in position
|
407
|
-
history ring.
|
408
|
-
|
409
|
-
2008-02-17 13:57 Rocky Bernstein
|
410
|
-
|
411
|
-
* ruby-debug-base.rb: Add Debugger.last_exception. Show exception
|
412
|
-
in post-mortem when "info program"
|
413
|
-
is issued. Reorganize list of major changes better.
|
414
|
-
|
415
|
-
2008-02-13 21:47 Rocky Bernstein
|
416
|
-
|
417
|
-
* ChangeLog: processor.rb: spelled "post-mortem" incorrectly in
|
418
|
-
prompt.
|
419
|
-
|
420
|
-
2008-02-13 17:32 Rocky Bernstein
|
421
|
-
|
422
|
-
* ChangeLog: Set up keys for comint-next-prompt and
|
423
|
-
comint-previous-prompt.
|
424
|
-
|
425
|
-
2008-02-12 02:06 Rocky Bernstein
|
426
|
-
|
427
|
-
* ChangeLog: Fix bug in "info thread verbose" which wasn't showing
|
428
|
-
full traceback.
|
429
|
-
|
430
|
-
2008-02-09 15:48 Rocky Bernstein
|
431
|
-
|
432
|
-
* ChangeLog: helper.rb Failed attempt to DRY tests more. But save
|
433
|
-
what we have
|
434
|
-
which may someday in the future be used to go further. Minus to
|
435
|
-
undercore in Data file names in preparation such time. (We'll use
|
436
|
-
the
|
437
|
-
filename as the test name).
|
438
|
-
|
439
|
-
testing
|
440
|
-
|
441
|
-
2008-02-06 16:15 Rocky Bernstein
|
442
|
-
|
443
|
-
* ChangeLog: Add 'nowarn to find-file-noselect and test that we
|
444
|
-
don't get a warning.
|
445
|
-
|
446
|
-
2008-02-05 01:41 Rocky Bernstein
|
447
|
-
|
448
|
-
* ChangeLog: rdebug.el: Add a defgroup for rdebug so customization
|
449
|
-
in Emacs 23 is possible.
|
450
|
-
Some other minor doc fixes.
|
451
|
-
setshow.* make sure we don't have an $Id line that we have to
|
452
|
-
check against.
|
453
|
-
|
454
|
-
2008-02-03 15:23 Rocky Bernstein
|
455
|
-
|
456
|
-
* ChangeLog: Try to get testing a little more organized, although
|
457
|
-
more work should
|
458
|
-
be done: Create a data directory for comparison ("right") and
|
459
|
-
script
|
460
|
-
command ("cmd") files. Code is now more uniform (and should DRY'd
|
461
|
-
a
|
462
|
-
bit more).
|
463
|
-
|
464
|
-
2008-02-02 23:10 Rocky Bernstein
|
465
|
-
|
466
|
-
* ChangeLog: Remove commands in post-mortem which are not
|
467
|
-
applicable, e.g."step",
|
468
|
-
"next", "continue"...
|
469
|
-
|
470
|
-
"No breakpoints have been set" is now an error message when
|
471
|
-
trying to
|
472
|
-
set a breakpoint.
|
473
|
-
|
474
|
-
Add post-mortem test.
|
475
|
-
|
476
|
-
Debug.init no longer exists.
|
477
|
-
|
478
|
-
2008-02-02 09:27 Rocky Bernstein
|
479
|
-
|
480
|
-
* ruby-debug-base.rb: Remove Debugger.init and fold options
|
481
|
-
parameter into Debugger.start.
|
482
|
-
Old Debugger.start has been renamed Deebugger.start_
|
483
|
-
|
484
|
-
2008-01-31 16:30 Rocky Bernstein
|
485
|
-
|
486
|
-
* ChangeLog: Leave ruby_debug.c this way for now.
|
487
|
-
|
488
|
-
2008-01-31 16:24 Rocky Bernstein
|
489
|
-
|
490
|
-
* ChangeLog: ruby_debug.c: more adventures in exception handling
|
491
|
-
processor.rb: Removal of crash when annotate is on. Need to fix
|
492
|
-
the source of the
|
493
|
-
problem though.
|
494
|
-
|
495
|
-
2008-01-31 15:16 Rocky Bernstein
|
496
|
-
|
497
|
-
* ruby-debug-base.rb: Handle post-mortem and exception traceback
|
498
|
-
reporting in ruby-debug
|
499
|
-
|
500
|
-
2008-01-30 17:01 Rocky Bernstein
|
501
|
-
|
502
|
-
* ChangeLog: Add Command.find() to find a subcommand name.
|
503
|
-
condition.right: correct for breakpoint hit counts.
|
504
|
-
|
505
|
-
2008-01-30 01:43 Rocky Bernstein
|
506
|
-
|
507
|
-
* ChangeLog: Add number of times a breakpoint is hit like gdb does.
|
508
|
-
|
509
|
-
2008-01-29 22:37 Rocky Bernstein
|
510
|
-
|
511
|
-
* ChangeLog: Columnize breakpoint output.
|
512
|
-
|
513
|
-
2008-01-29 11:20 Rocky Bernstein
|
514
|
-
|
515
|
-
* ChangeLog: More annotate=2 fixes.
|
516
|
-
|
517
|
-
2008-01-28 15:59 Rocky Bernstein
|
518
|
-
|
519
|
-
* ChangeLog: Add info file breakpoints to show lines which we can
|
520
|
-
set a breakpoint on.
|
521
|
-
Revise so we chdir into SRC_DIR.
|
522
|
-
test-hist.rb is broken - will fix later.
|
523
|
-
|
524
|
-
2008-01-25 12:11 Rocky Bernstein
|
525
|
-
|
526
|
-
* ChangeLog, ruby-debug-base.rb: Add Debugger.init which intializes
|
527
|
-
things that rdebug does. This
|
528
|
-
allows a restart even though rdebug wasn't called initially.
|
529
|
-
|
530
|
-
2008-01-22 23:15 Rocky Bernstein
|
531
|
-
|
532
|
-
* ChangeLog: Allow "help info xxx". Add ability for long help on
|
533
|
-
"info" command.
|
534
|
-
Add "info break xx".
|
535
|
-
|
536
|
-
test: remove test/unit class name conflicts. All the tests we
|
537
|
-
wrote
|
538
|
-
now get run.
|
539
|
-
|
540
|
-
2008-01-19 19:28 Rocky Bernstein
|
541
|
-
|
542
|
-
* ChangeLog: Move ruby-debug-base tests to base directory. Add a
|
543
|
-
binding_n regression test.
|
544
|
-
|
545
|
-
2008-01-16 18:42 Rocky Bernstein
|
546
|
-
|
547
|
-
* ChangeLog: Need to present source filename (__FILE__) as Ruby and
|
548
|
-
therefore breakpoint
|
549
|
-
sees it.
|
550
|
-
|
551
|
-
|
552
|
-
2008-01-16 02:19 Rocky Bernstein
|
553
|
-
|
554
|
-
* ChangeLog, ruby-debug-base.rb: Line caching moved to an external
|
555
|
-
gem, linecache. We now require
|
556
|
-
version 0.2 of that or greater.
|
557
|
-
|
558
|
-
2008-01-14 01:31 Rocky Bernstein
|
559
|
-
|
560
|
-
* ChangeLog: Make rdebug-track work better in the face of prompt
|
561
|
-
and error annotations.
|
562
|
-
control.rb: need another test when rdebug not called initially.
|
563
|
-
|
564
|
-
2008-01-13 21:51 Rocky Bernstein
|
565
|
-
|
566
|
-
* ChangeLog: Some stack -> frame renaming
|
567
|
-
ext/breakpoint.c: put methods in alpha order (to help with
|
568
|
-
reference man)
|
569
|
-
breakpoints.rb: one print -> errmsg
|
570
|
-
|
571
|
-
2008-01-13 18:13 Rocky Bernstein
|
572
|
-
|
573
|
-
* ChangeLog: Create errmsg routine for error output, start tagging
|
574
|
-
error messages
|
575
|
-
as errors. Under annotate 3, output errors similar to gdb
|
576
|
-
--annotate
|
577
|
-
does (although still simplified). Have Emacs pick up debugger
|
578
|
-
error
|
579
|
-
annotations.
|
580
|
-
|
581
|
-
2008-01-13 04:05 Rocky Bernstein
|
582
|
-
|
583
|
-
* ChangeLog: Check validity of expressions in breakpoint conditions
|
584
|
-
and don't allow
|
585
|
-
enabling a syntactically invalid expression.
|
586
|
-
|
587
|
-
Start noting messages which are errors via an errmsg routine.
|
588
|
-
|
589
|
-
2008-01-11 10:26 Rocky Bernstein
|
590
|
-
|
591
|
-
* ChangeLog: Document that ruby-debug resets $0. Align program
|
592
|
-
options in ref manual and --help. Alphabetize better.
|
593
|
-
|
594
|
-
2008-01-10 22:56 Rocky Bernstein
|
595
|
-
|
596
|
-
* ChangeLog: More correct $0 fix. Deal with the case ./ is
|
597
|
-
automatically added.
|
598
|
-
However this might not be right in all cases.
|
599
|
-
|
600
|
-
2008-01-10 22:25 Rocky Bernstein
|
601
|
-
|
602
|
-
* ChangeLog: Was gobbling arg in processing --emacs. Add test.
|
603
|
-
|
604
|
-
2008-01-10 10:34 Rocky Bernstein
|
605
|
-
|
606
|
-
* ChangeLog: Add condition command.
|
607
|
-
|
608
|
-
2008-01-09 19:10 Rocky Bernstein
|
609
|
-
|
610
|
-
* ChangeLog: Rakefile: rdebug.rb -> rdbg.el
|
611
|
-
rdebug-dbg.el: Add $Id$
|
612
|
-
|
613
|
-
2008-01-09 19:03 Rocky Bernstein
|
614
|
-
|
615
|
-
* ChangeLog: Break out secondary buffer into their own file, and
|
616
|
-
also internal
|
617
|
-
debug code and general secondary commands. Secondary buffer code
|
618
|
-
removed from rdebug-cmd and moved into the appropriate file.
|
619
|
-
|
620
|
-
rdebug-edit-variables-value is not defined so comment out for
|
621
|
-
now.
|
622
|
-
|
623
|
-
2008-01-08 16:04 Rocky Bernstein
|
624
|
-
|
625
|
-
* ChangeLog: Restore $: to the value it was before rdebug call.
|
626
|
-
|
627
|
-
2008-01-07 20:38 Rocky Bernstein
|
628
|
-
|
629
|
-
* ChangeLog: Add "var class". This means "var const .." can no
|
630
|
-
longer be abbreviated "var c"; use "var co" instead.
|
631
|
-
(Or "var const" or "var constant"
|
632
|
-
|
633
|
-
2008-01-07 19:57 Rocky Bernstein
|
634
|
-
|
635
|
-
* ChangeLog: Add class level variables to "info variables"
|
636
|
-
|
637
|
-
2008-01-07 17:37 Rocky Bernstein
|
638
|
-
|
639
|
-
* ChangeLog: Add "self" to list "info variables" spits out.
|
640
|
-
|
641
|
-
2008-01-07 09:59 Rocky Bernstein
|
642
|
-
|
643
|
-
* ChangeLog: --emacs sets width to 120. rdebug-core.el will reset
|
644
|
-
to 120 unless it's already that.
|
645
|
-
|
646
|
-
2008-01-07 04:29 Rocky Bernstein
|
647
|
-
|
648
|
-
* ChangeLog: Split out ChangeLogs better (I hope).
|
649
|
-
|
650
|
-
2008-01-06 20:56 Rocky Bernstein
|
651
|
-
|
652
|
-
* ChangeLog: test/*-emacs-basic*, tdebug: Add test of running in
|
653
|
-
Emacs without annotations.
|
654
|
-
|
655
|
-
emacs/*.el: make regexp tests work again, move regexp to from
|
656
|
-
core to regexp.
|
657
|
-
Add an annotate regexp test.
|
658
|
-
|
659
|
-
processor.rb: Remove some anotation print from bleeding into
|
660
|
-
output
|
661
|
-
when annotations are not wanted. Reinstate "Program finished" in
|
662
|
-
annotations and outside (rdebug).
|
663
|
-
|
664
|
-
2008-01-06 18:55 Rocky Bernstein
|
665
|
-
|
666
|
-
* ChangeLog: Create Processor class and subclass that. Perhaps a
|
667
|
-
mixin would be good.
|
668
|
-
Remove annotation output bleanding when annotate is off.
|
669
|
-
Try to reduce the mess annotations is adding to processor.rb
|
670
|
-
rdebug-core.el: fix indentation to pass the regression test
|
671
|
-
Anders added
|
672
|
-
Makefile.am: Add rdebug-source.el to distribution.
|
673
|
-
Make sure "rake test"
|
674
|
-
|
675
|
-
2008-01-06 02:15 Rocky Bernstein
|
676
|
-
|
677
|
-
* ChangeLog: Some work on saving state across a restart. More work
|
678
|
-
is needed on the
|
679
|
-
script command to get this working. The save-file name is now
|
680
|
-
optional. save.rb split off from script.rb Display expressions
|
681
|
-
and
|
682
|
-
some settings are now captured in the save/restore file.
|
683
|
-
Add interface.finalize - things that need to be done before quit
|
684
|
-
or
|
685
|
-
restart.
|
686
|
-
|
687
|
-
2008-01-05 21:16 Rocky Bernstein
|
688
|
-
|
689
|
-
* ChangeLog: More work to make annotate more like gdb's.
|
690
|
-
starting/stopping/exiting
|
691
|
-
should be more similar. Some code has been commented out until we
|
692
|
-
get
|
693
|
-
the Emacs interface to match. See "FIXME: ANNOTATE" in
|
694
|
-
processor.rb.
|
695
|
-
Also regression tests for output and annotate currently fail for
|
696
|
-
this
|
697
|
-
reason.
|
698
|
-
|
699
|
-
2008-01-02 20:35 Rocky Bernstein
|
700
|
-
|
701
|
-
* ChangeLog: helper.rb: add regexp for a position. TODO: add
|
702
|
-
parsing routine and use in
|
703
|
-
various commands
|
704
|
-
|
705
|
-
2008-01-02 14:41 Rocky Bernstein
|
706
|
-
|
707
|
-
* ChangeLog: processor.rb: Redo where starting/exiting annotations
|
708
|
-
are done.
|
709
|
-
rdebug.el: back off on setting output command for now.
|
710
|
-
|
711
|
-
2008-01-01 15:23 Rocky Bernstein
|
712
|
-
|
713
|
-
* ChangeLog: Fix --emacs to do --no-quit properly.
|
714
|
-
|
715
|
-
2008-01-01 09:00 Rocky Bernstein
|
716
|
-
|
717
|
-
* ChangeLog: Remove RDoc warnings caused because C files have been
|
718
|
-
split up.
|
719
|
-
|
720
|
-
2008-01-01 05:51 Rocky Bernstein
|
721
|
-
|
722
|
-
* ChangeLog: reindent -> indent. Makefile.am: wasn't including all
|
723
|
-
test files.
|
724
|
-
|
725
|
-
2007-12-31 06:26 Rocky Bernstein
|
726
|
-
|
727
|
-
* ChangeLog: Rakefile: add spit-off C files to ruby-debug-base gem.
|
728
|
-
|
729
|
-
2007-12-31 06:23 Rocky Bernstein
|
730
|
-
|
731
|
-
* ChangeLog: rdebug-test-cmd.el: Indentation
|
732
|
-
|
733
|
-
2007-12-31 06:08 Rocky Bernstein
|
734
|
-
|
735
|
-
* ChangeLog: Changes and more changes.
|
736
|
-
|
737
|
-
2007-12-29 13:31 Rocky Bernstein
|
738
|
-
|
739
|
-
* ChangeLog: Remove looping on quit. "-n" is broken so remove it
|
740
|
-
for now.
|
741
|
-
|
742
|
-
2007-12-28 15:33 Rocky Bernstein
|
743
|
-
|
744
|
-
* ChangeLog: info.rb: Incorrect test for no display expressions.
|
745
|
-
display.rb: Grammar thing.
|
746
|
-
processor.rb: Slightly cleaner code
|
747
|
-
test/* more/better tests.
|
748
|
-
|
749
|
-
2007-12-27 21:03 Rocky Bernstein
|
750
|
-
|
751
|
-
* ChangeLog: Be more agressive about resetting gud-last-frame and
|
752
|
-
gud-last-last-frame. These foul up tracking when debugging is
|
753
|
-
interrupted.
|
754
|
-
We probably need a special "reset" command.
|
755
|
-
|
756
|
-
2007-12-26 18:35 Rocky Bernstein
|
757
|
-
|
758
|
-
* ChangeLog: Version number games - maybe 0.10.1 is better.
|
759
|
-
|
760
|
-
2007-12-25 23:40 Rocky Bernstein
|
761
|
-
|
762
|
-
* ChangeLog: Add step- and step+. Document as well as the new
|
763
|
-
toggle command.
|
764
|
-
|
765
|
-
2007-12-25 09:55 Rocky Bernstein
|
766
|
-
|
767
|
-
* ChangeLog: Small doc fixes.
|
768
|
-
|
769
|
-
2007-12-25 07:51 Rocky Bernstein
|
770
|
-
|
771
|
-
* ChangeLog: Last commit before 0.10.0 release.
|
772
|
-
|
773
|
-
2007-12-25 02:51 Rocky Bernstein
|
774
|
-
|
775
|
-
* ChangeLog: breakpoints.*: main -> Object. Add bad Class name test
|
776
|
-
AUTHOR: Add Anders
|
777
|
-
README: note ruby-debug-extra. More precise (I think)
|
778
|
-
|
779
|
-
2007-12-24 00:25 Rocky Bernstein
|
780
|
-
|
781
|
-
* ChangeLog: Rakefile: set up gem unit test for ruby-debug-base.
|
782
|
-
Add file in test/
|
783
|
-
so we could do the same for ruby-debug were it not for other
|
784
|
-
mysterious
|
785
|
-
problems.
|
786
|
-
|
787
|
-
2007-12-23 17:33 Rocky Bernstein
|
788
|
-
|
789
|
-
* ChangeLog: Go over packaging:
|
790
|
-
ChangeLogs for ruby-debug-base (in ext and lib) separate from CLI
|
791
|
-
ChangeLog
|
792
|
-
ChangeLogs now map userid to names
|
793
|
-
ruby-debug-base regression test included in ruby-debug-base
|
794
|
-
Columnize test separated. (It will disappear when ruby-debug
|
795
|
-
requires it
|
796
|
-
as an external)
|
797
|
-
|
798
|
-
2007-12-16 21:31 Rocky Bernstein
|
799
|
-
|
800
|
-
* ruby-debug-base.rb: Add "info variables test".
|
801
|
-
|
802
|
-
ruby-debug-base.rb: Not sure how test(?M, file) ever worked
|
803
|
-
before but change
|
804
|
-
to use File.stat(file).mtime
|
805
|
-
info.rb: ignore debugger variables which are sometimes set.
|
806
|
-
|
807
|
-
2007-12-10 03:23 Rocky Bernstein
|
808
|
-
|
809
|
-
* ruby-debug-base.rb: doc changes.
|
810
|
-
|
811
|
-
2007-06-26 07:05 Rocky Bernstein
|
812
|
-
|
813
|
-
* ruby-debug-base.rb: Run .rdebugrc on Debugger.start. Look for
|
814
|
-
this in the current directory and run that instead the one in
|
815
|
-
$HOME if that exists. Again, inspired and compatible with gdb.
|
816
|
-
|
817
|
-
rdebug: Check script for syntax errors before loading. We get
|
818
|
-
more informative errors and it doesn't look like rdebug is at
|
819
|
-
fault.
|
820
|
-
|
821
|
-
2007-06-05 16:36 Kent Sibilev
|
822
|
-
|
823
|
-
* ruby-debug-base.rb: code reorganization.
|
824
|
-
reverted 'run' command.
|
825
|
-
|
826
|
-
2007-06-05 07:59 Kent Sibilev
|
827
|
-
|
828
|
-
* ruby-debug-base.rb: restore post_mortem
|
829
|
-
|
830
|
-
2007-06-02 15:01 Rocky Bernstein
|
831
|
-
|
832
|
-
* ruby-debug-base.rb: lib/ruby-debug-base.rb: add Quit and Restart
|
833
|
-
exceptions which can reliably be used after the delayed exception
|
834
|
-
handling bug is fixed
|
835
|
-
emacs/rdebug-track.el and cli/ruby-debug/processor.rb: more
|
836
|
-
accurate line tracking in EMACS. When not in emacs should be more
|
837
|
-
like what was there.
|
838
|
-
|
839
|
-
2007-06-01 21:57 Rocky Bernstein
|
840
|
-
|
841
|
-
* ruby-debug-base.rb: parens around a print seems to give a
|
842
|
-
warning. Remove.
|
843
|
-
|
844
|
-
2007-05-23 16:43 Rocky Bernstein
|
845
|
-
|
846
|
-
* ruby-debug-base.rb: post_mortem: to test $! *before* running
|
847
|
-
debug_at_ext or else we may get an erroneous message:
|
848
|
-
ruby-debug-base.rb:162:in `current_context': Debugger.start is
|
849
|
-
not called yet. (RuntimeError)
|
850
|
-
|
851
|
-
A simple test case to show the problem:
|
852
|
-
|
853
|
-
"require rubygems"
|
854
|
-
"require ruby-debug"
|
855
|
-
Debugger.start
|
856
|
-
Debugger.post_mortem
|
857
|
-
exit # Causes us to incorrectly give the above error
|
858
|
-
|
859
|
-
2007-05-15 20:22 Kent Sibilev
|
860
|
-
|
861
|
-
* ruby-debug-base.rb: various fixes
|
862
|
-
|
863
|
-
2007-04-27 23:21 Kent Sibilev
|
864
|
-
|
865
|
-
* ruby-debug-base.rb: ditto
|
866
|
-
|
867
|
-
2007-04-27 23:19 Kent Sibilev
|
868
|
-
|
869
|
-
* ruby-debug-base.rb: add breakpoint method as an alias for
|
870
|
-
debugger in case breakpoint method is not defined already
|
871
|
-
|
872
|
-
2007-03-25 01:03 Kent Sibilev
|
873
|
-
|
874
|
-
* ruby-debug-base.rb: will start the debugger if necessary
|
875
|
-
|
876
|
-
2007-03-24 18:17 Kent Sibilev
|
877
|
-
|
878
|
-
* stable becomes the trunk
|
879
|
-
|
880
|
-
2007-03-13 17:06 Kent Sibilev
|
881
|
-
|
882
|
-
* fixed rdoc
|
883
|
-
|
884
|
-
2007-03-01 23:44 Kent Sibilev
|
885
|
-
|
886
|
-
* fixed post-mortem
|
887
|
-
|
888
|
-
2007-02-27 08:02 Kent Sibilev
|
889
|
-
|
890
|
-
* repackaging ruby-debug
|
891
|
-
|
892
|
-
2007-02-23 20:56 Kent Sibilev
|
893
|
-
|
894
|
-
* added an option for Debugger.debug_load to stop at the first line
|
895
|
-
of code
|
896
|
-
|
897
|
-
2007-02-12 06:59 Kent Sibilev
|
898
|
-
|
899
|
-
* added --emacs option
|
900
|
-
|
901
|
-
2007-02-09 16:56 Kent Sibilev
|
902
|
-
|
903
|
-
* in remote mode the debugger shouldn't stop inside of rdebug
|
904
|
-
script
|
905
|
-
|
906
|
-
2007-02-09 06:20 Kent Sibilev
|
907
|
-
|
908
|
-
* --
|
909
|
-
|
910
|
-
2007-02-09 01:00 Kent Sibilev
|
911
|
-
|
912
|
-
* fixed code reloading
|
913
|
-
made 'reload on' as a part of the 'set' command
|
914
|
-
evaluate ~/.rdebugrc as an init script
|
915
|
-
|
916
|
-
2007-02-07 02:42 Kent Sibilev
|
917
|
-
|
918
|
-
* should use ignored? method to check for the debugger's thread
|
919
|
-
|
920
|
-
2007-02-06 22:21 Kent Sibilev
|
921
|
-
|
922
|
-
*
|
923
|
-
|
924
|
-
2007-02-05 22:48 Kent Sibilev
|
925
|
-
|
926
|
-
* --
|
927
|
-
|
928
|
-
2007-02-05 22:11 Kent Sibilev
|
929
|
-
|
930
|
-
* fixed emacs integration
|
931
|
-
|
932
|
-
2007-02-05 20:16 Kent Sibilev
|
933
|
-
|
934
|
-
* fixed another issue where a bogus frame is being left in the
|
935
|
-
stack
|
936
|
-
|
937
|
-
2007-02-04 23:36 Kent Sibilev
|
938
|
-
|
939
|
-
* seg fault bugfixes
|
940
|
-
fixed suspend/resume
|
941
|
-
|
942
|
-
2007-02-04 03:49 Kent Sibilev
|
943
|
-
|
944
|
-
* A better fix for the segmentation fault
|
945
|
-
|
946
|
-
2007-02-03 20:24 Kent Sibilev
|
947
|
-
|
948
|
-
* fix seg fault by avoiding ruby's bug
|
949
|
-
fixed Context#resume
|
950
|
-
when handling post-mortem all threads must be suspended
|
951
|
-
|
952
|
-
2007-02-02 18:47 Kent Sibilev
|
953
|
-
|
954
|
-
* removed ambiguity with down command
|
955
|
-
|
956
|
-
2007-02-01 23:48 Kent Sibilev
|
957
|
-
|
958
|
-
* typo
|
959
|
-
|
960
|
-
2007-02-01 22:15 Kent Sibilev
|
961
|
-
|
962
|
-
* made eval command available from the control thread
|
963
|
-
|
964
|
-
2007-02-01 07:22 Kent Sibilev
|
965
|
-
|
966
|
-
* added setting command
|
967
|
-
added Context#suspended? method
|
968
|
-
dispay suspended status in the thread list
|
969
|
-
display frame starting from zero
|
970
|
-
|
971
|
-
2007-01-31 21:13 Kent Sibilev
|
972
|
-
|
973
|
-
* ditto
|
974
|
-
|
975
|
-
2007-01-31 21:12 Kent Sibilev
|
976
|
-
|
977
|
-
* fixed help command
|
978
|
-
|
979
|
-
2007-01-31 19:39 Kent Sibilev
|
980
|
-
|
981
|
-
* fixed frame count
|
982
|
-
added frame_self method to context
|
983
|
-
|
984
|
-
2007-01-31 16:48 Kent Sibilev
|
985
|
-
|
986
|
-
* removed all references to frames array
|
987
|
-
fixed post-mortem debugging
|
988
|
-
|
989
|
-
2007-01-31 00:51 Kent Sibilev
|
990
|
-
|
991
|
-
* removed obsolete frames usage
|
992
|
-
|
993
|
-
2007-01-31 00:41 Kent Sibilev
|
994
|
-
|
995
|
-
* refactored out frame class and preallocate stack
|
996
|
-
made local variable available even when bindings are not
|
997
|
-
collected.
|
998
|
-
|
999
|
-
2007-01-28 20:25 Kent Sibilev
|
1000
|
-
|
1001
|
-
* --
|
1002
|
-
|
1003
|
-
2007-01-28 06:22 Kent Sibilev
|
1004
|
-
|
1005
|
-
* - Control thread is always started by rdebug script.
|
1006
|
-
- Ability to specify negative frame number to frame commands.
|
1007
|
-
Patch from R. Bernstein.
|
1008
|
-
|
1009
|
-
2007-01-28 04:52 Kent Sibilev
|
1010
|
-
|
1011
|
-
* added top frame caching
|
1012
|
-
control thread is always started by rdebug script
|
1013
|
-
|
1014
|
-
2007-01-27 01:43 Kent Sibilev
|
1015
|
-
|
1016
|
-
* another performance optimization
|
1017
|
-
|
1018
|
-
2007-01-26 20:28 Kent Sibilev
|
1019
|
-
|
1020
|
-
* fixed #7484
|
1021
|
-
|
1022
|
-
2007-01-26 17:59 Kent Sibilev
|
1023
|
-
|
1024
|
-
* revisited file name comparing procedure
|
1025
|
-
|
1026
|
-
2007-01-26 09:03 Kent Sibilev
|
1027
|
-
|
1028
|
-
* performance improvements
|
1029
|
-
|
1030
|
-
2007-01-26 03:12 Kent Sibilev
|
1031
|
-
|
1032
|
-
* added option to exclude collecting of frame bindings
|
1033
|
-
|
1034
|
-
2007-01-24 18:33 Kent Sibilev
|
1035
|
-
|
1036
|
-
* disable tracing when in post-mortem
|
1037
|
-
added -x/--trace option to rdebug script
|
1038
|
-
|
1039
|
-
2007-01-21 08:13 Kent Sibilev
|
1040
|
-
|
1041
|
-
*
|
1042
|
-
|
1043
|
-
2007-01-21 03:34 Kent Sibilev
|
1044
|
-
|
1045
|
-
* assign an id to the breakpoint
|
1046
|
-
|
1047
|
-
2007-01-21 01:20 Kent Sibilev
|
1048
|
-
|
1049
|
-
* added post_mortem_method wrap method
|
1050
|
-
|
1051
|
-
2006-12-21 20:16 Kent Sibilev
|
1052
|
-
|
1053
|
-
* added 'restart' command
|
1054
|
-
|
1055
|
-
2006-12-21 14:12 Kent Sibilev
|
1056
|
-
|
1057
|
-
* made 'exit' an alias to 'quit'
|
1058
|
-
fixed the interoperability problem with rspec
|
1059
|
-
|
1060
|
-
2006-12-21 13:43 Kent Sibilev
|
1061
|
-
|
1062
|
-
* fixed trace command in post-mortem mode
|
1063
|
-
|
1064
|
-
2006-12-21 01:59 Kent Sibilev
|
1065
|
-
|
1066
|
-
* initialize only once
|
1067
|
-
|
1068
|
-
2006-12-21 01:08 Kent Sibilev
|
1069
|
-
|
1070
|
-
* fixes irb help command
|
1071
|
-
|
1072
|
-
2006-12-20 21:19 Kent Sibilev
|
1073
|
-
|
1074
|
-
* check that debugger has been started
|
1075
|
-
|
1076
|
-
2006-12-20 20:08 Kent Sibilev
|
1077
|
-
|
1078
|
-
* added post-mortem option to rdebug
|
1079
|
-
|
1080
|
-
2006-12-20 19:38 Kent Sibilev
|
1081
|
-
|
1082
|
-
* initial support for post-mortem debugging
|
1083
|
-
|
1084
|
-
2006-12-19 06:13 Kent Sibilev
|
1085
|
-
|
1086
|
-
* removed 'run' alias
|
1087
|
-
|
1088
|
-
2006-12-18 08:34 Kent Sibilev
|
1089
|
-
|
1090
|
-
* added irb command
|
1091
|
-
fixed source_for method
|
1092
|
-
|
1093
|
-
2006-12-02 19:15 Kent Sibilev
|
1094
|
-
|
1095
|
-
* added reload command
|
1096
|
-
|
1097
|
-
2006-12-02 18:32 Kent Sibilev
|
1098
|
-
|
1099
|
-
* fixed #6518 and #6545
|
1100
|
-
|
1101
|
-
2006-12-01 06:47 Kent Sibilev
|
1102
|
-
|
1103
|
-
*
|
1104
|
-
|
1105
|
-
2006-11-21 23:29 Kent Sibilev
|
1106
|
-
|
1107
|
-
* ensure that on/off is the last on the line
|
1108
|
-
|
1109
|
-
2006-11-16 00:04 Kent Sibilev
|
1110
|
-
|
1111
|
-
* fixed debug_method for assignment methods
|
1112
|
-
|
1113
|
-
2006-11-16 00:01 Kent Sibilev
|
1114
|
-
|
1115
|
-
* added the new branch for the stable version
|
1116
|
-
|
1117
|
-
2006-10-15 22:43 Kent Sibilev
|
1118
|
-
|
1119
|
-
* branching a stable version
|
1120
|
-
|
1121
|
-
2006-10-15 22:26 Kent Sibilev
|
1122
|
-
|
1123
|
-
* ruby-debug.rb: remove unused require
|
1124
|
-
uploaded new windows binary
|
1125
|
-
|
1126
|
-
2006-10-15 19:02 Kent Sibilev
|
1127
|
-
|
1128
|
-
* ruby-debug/commands/display.rb: remove unused constructor
|
1129
|
-
|
1130
|
-
2006-10-15 16:54 Kent Sibilev
|
1131
|
-
|
1132
|
-
* ruby-debug.rb, ruby-debug/commands/threads.rb: new logic of
|
1133
|
-
context suspend/resume
|
1134
|
-
|
1135
|
-
2006-10-15 07:36 Kent Sibilev
|
1136
|
-
|
1137
|
-
* ruby-debug.rb, ruby-debug/lock.rb: fixed locking of debugger
|
1138
|
-
threads
|
1139
|
-
|
1140
|
-
2006-10-09 22:01 Kent Sibilev
|
1141
|
-
|
1142
|
-
* ruby-debug/interface.rb: fixes for windows version
|
1143
|
-
|
1144
|
-
2006-10-09 19:06 Kent Sibilev
|
1145
|
-
|
1146
|
-
* ruby-debug.rb, ruby-debug/interface.rb: added Debugger.skip and
|
1147
|
-
Debugger.debug_at_exit methods
|
1148
|
-
|
1149
|
-
2006-10-09 16:44 Kent Sibilev
|
1150
|
-
|
1151
|
-
* ., ruby-debug, ruby-debug.rb, ruby-debug/command.rb,
|
1152
|
-
ruby-debug/commands, ruby-debug/commands/breakpoints.rb,
|
1153
|
-
ruby-debug/commands/catchpoint.rb,
|
1154
|
-
ruby-debug/commands/control.rb, ruby-debug/commands/display.rb,
|
1155
|
-
ruby-debug/commands/eval.rb, ruby-debug/commands/frame.rb,
|
1156
|
-
ruby-debug/commands/help.rb, ruby-debug/commands/list.rb,
|
1157
|
-
ruby-debug/commands/method.rb, ruby-debug/commands/script.rb,
|
1158
|
-
ruby-debug/commands/stepping.rb, ruby-debug/commands/threads.rb,
|
1159
|
-
ruby-debug/commands/tmate.rb, ruby-debug/commands/trace.rb,
|
1160
|
-
ruby-debug/commands/variables.rb, ruby-debug/interface.rb,
|
1161
|
-
ruby-debug/lock.rb, ruby-debug/processor.rb: initial import
|
1162
|
-
|