ruby-debug-base 0.9.3-mswin32 → 0.10.0-mswin32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/AUTHORS +1 -0
- data/CHANGES +41 -0
- data/README +27 -13
- data/Rakefile +220 -0
- data/ext/ChangeLog +1110 -0
- data/ext/ruby_debug.c +274 -34
- data/ext/win32/Makefile +149 -0
- data/ext/win32/ruby_debug.o +0 -0
- data/ext/win32/ruby_debug.so +0 -0
- data/lib/ChangeLog +1147 -0
- data/lib/ruby-debug-base.rb +17 -11
- data/lib/ruby_debug.so +0 -0
- data/test/test-ruby-debug-base.rb +76 -0
- metadata +18 -12
data/ext/win32/Makefile
ADDED
@@ -0,0 +1,149 @@
|
|
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
|
+
prefix = $(DESTDIR)/usr/local/ruby-mingw32
|
11
|
+
exec_prefix = $(prefix)
|
12
|
+
sitedir = $(prefix)/lib/ruby/site_ruby
|
13
|
+
rubylibdir = $(libdir)/ruby/$(ruby_version)
|
14
|
+
docdir = $(datarootdir)/doc/$(PACKAGE)
|
15
|
+
dvidir = $(docdir)
|
16
|
+
datarootdir = $(prefix)/share
|
17
|
+
archdir = $(rubylibdir)/$(arch)
|
18
|
+
sbindir = $(exec_prefix)/sbin
|
19
|
+
psdir = $(docdir)
|
20
|
+
localedir = $(datarootdir)/locale
|
21
|
+
htmldir = $(docdir)
|
22
|
+
datadir = $(datarootdir)
|
23
|
+
includedir = $(prefix)/include
|
24
|
+
infodir = $(datarootdir)/info
|
25
|
+
sysconfdir = $(prefix)/etc
|
26
|
+
mandir = $(datarootdir)/man
|
27
|
+
libdir = $(exec_prefix)/lib
|
28
|
+
sharedstatedir = $(prefix)/com
|
29
|
+
oldincludedir = $(DESTDIR)/usr/include
|
30
|
+
pdfdir = $(docdir)
|
31
|
+
sitearchdir = $(sitelibdir)/$(sitearch)
|
32
|
+
bindir = $(exec_prefix)/bin
|
33
|
+
localstatedir = $(prefix)/var
|
34
|
+
sitelibdir = $(sitedir)/$(ruby_version)
|
35
|
+
libexecdir = $(exec_prefix)/libexec
|
36
|
+
|
37
|
+
CC = i586-mingw32msvc-gcc
|
38
|
+
LIBRUBY = lib$(LIBRUBY_SO).a
|
39
|
+
LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
|
40
|
+
LIBRUBYARG_SHARED = -l$(RUBY_SO_NAME)
|
41
|
+
LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static
|
42
|
+
|
43
|
+
RUBY_EXTCONF_H =
|
44
|
+
CFLAGS = -g -O2
|
45
|
+
INCFLAGS = -I. -I$(topdir) -I$(hdrdir) -I$(srcdir)
|
46
|
+
CPPFLAGS =
|
47
|
+
CXXFLAGS = $(CFLAGS)
|
48
|
+
DLDFLAGS = -L. -Wl,--enable-auto-image-base,--enable-auto-import,--export-all
|
49
|
+
LDSHARED = i586-mingw32msvc-gcc -shared -s
|
50
|
+
AR = i586-mingw32msvc-ar
|
51
|
+
EXEEXT = .exe
|
52
|
+
|
53
|
+
RUBY_INSTALL_NAME = ruby
|
54
|
+
RUBY_SO_NAME = msvcrt-ruby18
|
55
|
+
arch = i386-mingw32
|
56
|
+
sitearch = i386-msvcrt
|
57
|
+
ruby_version = 1.8
|
58
|
+
ruby = /usr/local/ruby-mingw32/bin/ruby
|
59
|
+
RUBY = $(ruby)
|
60
|
+
RM = rm -f
|
61
|
+
MAKEDIRS = mkdir -p
|
62
|
+
INSTALL = /usr/bin/install -c
|
63
|
+
INSTALL_PROG = $(INSTALL) -m 0755
|
64
|
+
INSTALL_DATA = $(INSTALL) -m 644
|
65
|
+
COPY = cp
|
66
|
+
|
67
|
+
#### End of system configuration section. ####
|
68
|
+
|
69
|
+
preload =
|
70
|
+
|
71
|
+
libpath = . $(libdir)
|
72
|
+
LIBPATH = -L"." -L"$(libdir)"
|
73
|
+
DEFFILE =
|
74
|
+
|
75
|
+
CLEANFILES =
|
76
|
+
DISTCLEANFILES =
|
77
|
+
|
78
|
+
extout =
|
79
|
+
extout_prefix =
|
80
|
+
target_prefix =
|
81
|
+
LOCAL_LIBS =
|
82
|
+
LIBS = $(LIBRUBYARG_SHARED) -lwsock32
|
83
|
+
SRCS = ruby_debug.c
|
84
|
+
OBJS = ruby_debug.o
|
85
|
+
TARGET = ruby_debug
|
86
|
+
DLLIB = $(TARGET).so
|
87
|
+
EXTSTATIC =
|
88
|
+
STATIC_LIB =
|
89
|
+
|
90
|
+
RUBYCOMMONDIR = $(sitedir)$(target_prefix)
|
91
|
+
RUBYLIBDIR = $(sitelibdir)$(target_prefix)
|
92
|
+
RUBYARCHDIR = $(sitearchdir)$(target_prefix)
|
93
|
+
|
94
|
+
TARGET_SO = $(DLLIB)
|
95
|
+
CLEANLIBS = $(TARGET).so $(TARGET).il? $(TARGET).tds $(TARGET).map
|
96
|
+
CLEANOBJS = *.o *.a *.s[ol] *.pdb *.exp *.bak
|
97
|
+
|
98
|
+
all: $(DLLIB)
|
99
|
+
static: $(STATIC_LIB)
|
100
|
+
|
101
|
+
clean:
|
102
|
+
@-$(RM) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES)
|
103
|
+
|
104
|
+
distclean: clean
|
105
|
+
@-$(RM) Makefile $(RUBY_EXTCONF_H) conftest.* mkmf.log
|
106
|
+
@-$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES)
|
107
|
+
|
108
|
+
realclean: distclean
|
109
|
+
install: install-so install-rb
|
110
|
+
|
111
|
+
install-so: $(RUBYARCHDIR)
|
112
|
+
install-so: $(RUBYARCHDIR)/$(DLLIB)
|
113
|
+
$(RUBYARCHDIR)/$(DLLIB): $(DLLIB)
|
114
|
+
$(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
|
115
|
+
install-rb: pre-install-rb install-rb-default
|
116
|
+
install-rb-default: pre-install-rb-default
|
117
|
+
pre-install-rb: Makefile
|
118
|
+
pre-install-rb-default: Makefile
|
119
|
+
$(RUBYARCHDIR):
|
120
|
+
$(MAKEDIRS) $@
|
121
|
+
|
122
|
+
site-install: site-install-so site-install-rb
|
123
|
+
site-install-so: install-so
|
124
|
+
site-install-rb: install-rb
|
125
|
+
|
126
|
+
.SUFFIXES: .c .m .cc .cxx .cpp .C .o
|
127
|
+
|
128
|
+
.cc.o:
|
129
|
+
$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
130
|
+
|
131
|
+
.cxx.o:
|
132
|
+
$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
133
|
+
|
134
|
+
.cpp.o:
|
135
|
+
$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
136
|
+
|
137
|
+
.C.o:
|
138
|
+
$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
139
|
+
|
140
|
+
.c.o:
|
141
|
+
$(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) -c $<
|
142
|
+
|
143
|
+
$(DLLIB): $(OBJS)
|
144
|
+
@-$(RM) $@
|
145
|
+
$(LDSHARED) -o $@ $(OBJS) $(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS)
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
$(OBJS): ruby.h defines.h
|
Binary file
|
Binary file
|
data/lib/ChangeLog
ADDED
@@ -0,0 +1,1147 @@
|
|
1
|
+
2008-02-06 16:15 Rocky Bernstein
|
2
|
+
|
3
|
+
* trunk/ChangeLog, trunk/emacs/Makefile.am,
|
4
|
+
trunk/emacs/rdebug-gud.el, trunk/emacs/test/test-gud.el,
|
5
|
+
ChangeLog: Add 'nowarn to find-file-noselect and test that we
|
6
|
+
don't get a warning.
|
7
|
+
|
8
|
+
2008-02-05 01:41 Rocky Bernstein
|
9
|
+
|
10
|
+
* trunk/ChangeLog, trunk/emacs/rdebug-track.el,
|
11
|
+
trunk/emacs/rdebug.el, ChangeLog, trunk/test/data/setshow.cmd,
|
12
|
+
trunk/test/data/setshow.right: rdebug.el: Add a defgroup for
|
13
|
+
rdebug so customization in Emacs 23 is possible.
|
14
|
+
Some other minor doc fixes.
|
15
|
+
setshow.* make sure we don't have an $Id line that we have to
|
16
|
+
check against.
|
17
|
+
|
18
|
+
2008-02-03 15:23 Rocky Bernstein
|
19
|
+
|
20
|
+
* trunk/ChangeLog, trunk/Rakefile, trunk/doc/ruby-debug.texi,
|
21
|
+
ChangeLog, trunk/test/annotate.cmd, trunk/test/annotate.right,
|
22
|
+
trunk/test/break-bad.cmd, trunk/test/break-bad.right,
|
23
|
+
trunk/test/breakpoints.cmd, trunk/test/breakpoints.right,
|
24
|
+
trunk/test/condition.cmd, trunk/test/condition.right,
|
25
|
+
trunk/test/ctrl.cmd, trunk/test/ctrl.right, trunk/test/data,
|
26
|
+
trunk/test/data/annotate.cmd, trunk/test/data/annotate.right,
|
27
|
+
trunk/test/data/break-bad.cmd, trunk/test/data/break-bad.right,
|
28
|
+
trunk/test/data/breakpoints.cmd,
|
29
|
+
trunk/test/data/breakpoints.right, trunk/test/data/condition.cmd,
|
30
|
+
trunk/test/data/condition.right, trunk/test/data/ctrl.cmd,
|
31
|
+
trunk/test/data/ctrl.right, trunk/test/data/display.cmd,
|
32
|
+
trunk/test/data/display.right, trunk/test/data/dollar-0.right,
|
33
|
+
trunk/test/data/dollar-0a.right, trunk/test/data/dollar-0b.right,
|
34
|
+
trunk/test/data/edit.cmd, trunk/test/data/edit.right,
|
35
|
+
trunk/test/data/emacs-basic.cmd,
|
36
|
+
trunk/test/data/emacs-basic.right, trunk/test/data/enable.cmd,
|
37
|
+
trunk/test/data/enable.right, trunk/test/data/frame.cmd,
|
38
|
+
trunk/test/data/frame.right, trunk/test/data/help.cmd,
|
39
|
+
trunk/test/data/help.right, trunk/test/data/history.right,
|
40
|
+
trunk/test/data/info-var-bug2.cmd,
|
41
|
+
trunk/test/data/info-var-bug2.right,
|
42
|
+
trunk/test/data/info-var.cmd, trunk/test/data/info-var.right,
|
43
|
+
trunk/test/data/info.cmd, trunk/test/data/info.right,
|
44
|
+
trunk/test/data/noquit.right, trunk/test/data/output.cmd,
|
45
|
+
trunk/test/data/output.right, trunk/test/data/post-mortem.cmd,
|
46
|
+
trunk/test/data/post-mortem.right, trunk/test/data/quit.cmd,
|
47
|
+
trunk/test/data/quit.right, trunk/test/data/raise.cmd,
|
48
|
+
trunk/test/data/raise.right, trunk/test/data/setshow.cmd,
|
49
|
+
trunk/test/data/setshow.right, trunk/test/data/source.cmd,
|
50
|
+
trunk/test/data/source.right, trunk/test/data/stepping.cmd,
|
51
|
+
trunk/test/data/stepping.right, trunk/test/data/test-init.right,
|
52
|
+
trunk/test/display.cmd, trunk/test/display.right,
|
53
|
+
trunk/test/dollar-0.right, trunk/test/dollar-0a.right,
|
54
|
+
trunk/test/dollar-0b.right, trunk/test/edit.cmd,
|
55
|
+
trunk/test/edit.right, trunk/test/emacs-basic.cmd,
|
56
|
+
trunk/test/emacs-basic.right, trunk/test/enable.cmd,
|
57
|
+
trunk/test/enable.right, trunk/test/frame.cmd,
|
58
|
+
trunk/test/frame.right, trunk/test/help.cmd,
|
59
|
+
trunk/test/help.right, trunk/test/helper.rb,
|
60
|
+
trunk/test/history.right, trunk/test/info-var-bug2.cmd,
|
61
|
+
trunk/test/info-var-bug2.right, trunk/test/info-var.cmd,
|
62
|
+
trunk/test/info-var.right, trunk/test/info.cmd,
|
63
|
+
trunk/test/info.right, trunk/test/noquit.right,
|
64
|
+
trunk/test/output.cmd, trunk/test/output.right,
|
65
|
+
trunk/test/post-mortem.cmd, trunk/test/post-mortem.right,
|
66
|
+
trunk/test/quit.cmd, trunk/test/quit.right, trunk/test/raise.cmd,
|
67
|
+
trunk/test/raise.right, trunk/test/setshow.cmd,
|
68
|
+
trunk/test/setshow.right, trunk/test/source.cmd,
|
69
|
+
trunk/test/source.right, trunk/test/stepping.cmd,
|
70
|
+
trunk/test/stepping.right, trunk/test/test-annotate.rb,
|
71
|
+
trunk/test/test-break-bad.rb, trunk/test/test-breakpoints.rb,
|
72
|
+
trunk/test/test-condition.rb, trunk/test/test-ctrl.rb,
|
73
|
+
trunk/test/test-display.rb, trunk/test/test-dollar-0.rb,
|
74
|
+
trunk/test/test-edit.rb, trunk/test/test-emacs-basic.rb,
|
75
|
+
trunk/test/test-enable.rb, trunk/test/test-frame.rb,
|
76
|
+
trunk/test/test-help.rb, trunk/test/test-hist.rb,
|
77
|
+
trunk/test/test-info-var.rb, trunk/test/test-info.rb,
|
78
|
+
trunk/test/test-init.rb, trunk/test/test-init.right,
|
79
|
+
trunk/test/test-output.rb, trunk/test/test-pm.rb,
|
80
|
+
trunk/test/test-quit.rb, trunk/test/test-raise.rb,
|
81
|
+
trunk/test/test-setshow.rb, trunk/test/test-source.rb,
|
82
|
+
trunk/test/test-stepping.rb: Try to get testing a little more
|
83
|
+
organized, although more work should
|
84
|
+
be done: Create a data directory for comparison ("right") and
|
85
|
+
script
|
86
|
+
command ("cmd") files. Code is now more uniform (and should DRY'd
|
87
|
+
a
|
88
|
+
bit more).
|
89
|
+
|
90
|
+
2008-02-02 23:10 Rocky Bernstein
|
91
|
+
|
92
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/command.rb,
|
93
|
+
trunk/cli/ruby-debug/commands/breakpoints.rb,
|
94
|
+
trunk/cli/ruby-debug/commands/catchpoint.rb,
|
95
|
+
trunk/cli/ruby-debug/commands/control.rb,
|
96
|
+
trunk/cli/ruby-debug/commands/edit.rb,
|
97
|
+
trunk/cli/ruby-debug/commands/eval.rb,
|
98
|
+
trunk/cli/ruby-debug/commands/help.rb,
|
99
|
+
trunk/cli/ruby-debug/commands/info.rb,
|
100
|
+
trunk/cli/ruby-debug/commands/list.rb,
|
101
|
+
trunk/cli/ruby-debug/commands/save.rb,
|
102
|
+
trunk/cli/ruby-debug/commands/script.rb,
|
103
|
+
trunk/cli/ruby-debug/commands/settings.rb,
|
104
|
+
trunk/cli/ruby-debug/commands/show.rb,
|
105
|
+
trunk/cli/ruby-debug/commands/stepping.rb,
|
106
|
+
trunk/cli/ruby-debug/commands/threads.rb,
|
107
|
+
trunk/cli/ruby-debug/processor.rb, ChangeLog,
|
108
|
+
trunk/test/breakpoints.right, trunk/test/emacs-basic.right,
|
109
|
+
trunk/test/pm.rb, trunk/test/post-mortem.cmd,
|
110
|
+
trunk/test/post-mortem.right, trunk/test/test-emacs-basic.rb,
|
111
|
+
trunk/test/test-init.rb, trunk/test/test-pm.rb,
|
112
|
+
trunk/test/test-quit.rb: Remove commands in post-mortem which are
|
113
|
+
not applicable, e.g."step",
|
114
|
+
"next", "continue"...
|
115
|
+
|
116
|
+
"No breakpoints have been set" is now an error message when
|
117
|
+
trying to
|
118
|
+
set a breakpoint.
|
119
|
+
|
120
|
+
Add post-mortem test.
|
121
|
+
|
122
|
+
Debug.init no longer exists.
|
123
|
+
|
124
|
+
2008-02-02 09:27 Rocky Bernstein
|
125
|
+
|
126
|
+
* trunk/CHANGES, trunk/ext/ruby_debug.c, ruby-debug-base.rb,
|
127
|
+
trunk/test/gcd-dbg.rb: Remove Debugger.init and fold options
|
128
|
+
parameter into Debugger.start.
|
129
|
+
Old Debugger.start has been renamed Deebugger.start_
|
130
|
+
|
131
|
+
2008-01-31 16:30 Rocky Bernstein
|
132
|
+
|
133
|
+
* trunk/ChangeLog, trunk/ext/ruby_debug.c, ChangeLog: Leave
|
134
|
+
ruby_debug.c this way for now.
|
135
|
+
|
136
|
+
2008-01-31 16:24 Rocky Bernstein
|
137
|
+
|
138
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/processor.rb,
|
139
|
+
trunk/ext/ruby_debug.c, ChangeLog, trunk/test/raise.right,
|
140
|
+
trunk/test/tdebug.rb: ruby_debug.c: more adventures in exception
|
141
|
+
handling
|
142
|
+
processor.rb: Removal of crash when annotate is on. Need to fix
|
143
|
+
the source of the
|
144
|
+
problem though.
|
145
|
+
|
146
|
+
2008-01-31 15:16 Rocky Bernstein
|
147
|
+
|
148
|
+
* trunk/bin/rdebug, ruby-debug-base.rb, trunk/test/output.right,
|
149
|
+
trunk/test/quit.right, trunk/test/raise.rb,
|
150
|
+
trunk/test/raise.right, trunk/test/tdebug.rb: Handle post-mortem
|
151
|
+
and exception traceback reporting in ruby-debug
|
152
|
+
|
153
|
+
2008-01-30 17:01 Rocky Bernstein
|
154
|
+
|
155
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/command.rb,
|
156
|
+
trunk/cli/ruby-debug/commands/enable.rb,
|
157
|
+
trunk/cli/ruby-debug/commands/info.rb,
|
158
|
+
trunk/cli/ruby-debug/commands/show.rb, ChangeLog,
|
159
|
+
trunk/test/condition.right: Add Command.find() to find a
|
160
|
+
subcommand name.
|
161
|
+
condition.right: correct for breakpoint hit counts.
|
162
|
+
|
163
|
+
2008-01-30 01:43 Rocky Bernstein
|
164
|
+
|
165
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/info.rb,
|
166
|
+
ChangeLog, trunk/test/breakpoints.right,
|
167
|
+
trunk/test/emacs-basic.right: Add number of times a breakpoint is
|
168
|
+
hit like gdb does.
|
169
|
+
|
170
|
+
2008-01-29 22:37 Rocky Bernstein
|
171
|
+
|
172
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/info.rb,
|
173
|
+
ChangeLog: Columnize breakpoint output.
|
174
|
+
|
175
|
+
2008-01-29 11:20 Rocky Bernstein
|
176
|
+
|
177
|
+
* trunk/CHANGES, trunk/ChangeLog, trunk/bin/rdebug,
|
178
|
+
trunk/cli/ruby-debug/interface.rb,
|
179
|
+
trunk/cli/ruby-debug/processor.rb, trunk/doc/ruby-debug.texi,
|
180
|
+
trunk/emacs/rdebug-core.el, trunk/emacs/rdebug-layouts.el,
|
181
|
+
trunk/emacs/rdebug-source.el, trunk/emacs/rdebug.el,
|
182
|
+
trunk/emacs/test/test-core.el, ChangeLog: More annotate=2 fixes.
|
183
|
+
|
184
|
+
2008-01-28 15:59 Rocky Bernstein
|
185
|
+
|
186
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/info.rb,
|
187
|
+
ChangeLog, trunk/test/helper.rb, trunk/test/test-dollar-0.rb,
|
188
|
+
trunk/test/test-hist.rb, trunk/test/test-output.rb: Add info file
|
189
|
+
breakpoints to show lines which we can set a breakpoint on.
|
190
|
+
Revise so we chdir into SRC_DIR.
|
191
|
+
test-hist.rb is broken - will fix later.
|
192
|
+
|
193
|
+
2008-01-25 12:11 Rocky Bernstein
|
194
|
+
|
195
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/control.rb,
|
196
|
+
trunk/cli/ruby-debug/commands/settings.rb,
|
197
|
+
trunk/cli/ruby-debug/commands/show.rb, ChangeLog,
|
198
|
+
ruby-debug-base.rb, trunk/test/gcd-dbg-nox.rb,
|
199
|
+
trunk/test/gcd-dbg.rb: Add Debugger.init which intializes things
|
200
|
+
that rdebug does. This
|
201
|
+
allows a restart even though rdebug wasn't called initially.
|
202
|
+
|
203
|
+
2008-01-22 23:15 Rocky Bernstein
|
204
|
+
|
205
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/help.rb,
|
206
|
+
trunk/cli/ruby-debug/commands/info.rb, ChangeLog,
|
207
|
+
trunk/test/annotate.cmd, trunk/test/annotate.right,
|
208
|
+
trunk/test/ctrl.right, trunk/test/info.cmd,
|
209
|
+
trunk/test/info.right, trunk/test/test-edit.rb,
|
210
|
+
trunk/test/test-source.rb: Allow "help info xxx". Add ability for
|
211
|
+
long help on "info" command.
|
212
|
+
Add "info break xx".
|
213
|
+
|
214
|
+
test: remove test/unit class name conflicts. All the tests we
|
215
|
+
wrote
|
216
|
+
now get run.
|
217
|
+
|
218
|
+
2008-01-19 19:28 Rocky Bernstein
|
219
|
+
|
220
|
+
* trunk/ChangeLog, trunk/Rakefile, ChangeLog, trunk/test/base,
|
221
|
+
trunk/test/base/base.rb, trunk/test/base/binding.rb,
|
222
|
+
trunk/test/test-ruby-debug-base.rb: Move ruby-debug-base tests to
|
223
|
+
base directory. Add a binding_n regression test.
|
224
|
+
|
225
|
+
2008-01-16 18:42 Rocky Bernstein
|
226
|
+
|
227
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/breakpoints.rb,
|
228
|
+
ChangeLog, trunk/test/annotate.right,
|
229
|
+
trunk/test/breakpoints.right, trunk/test/condition.right,
|
230
|
+
trunk/test/display.right, trunk/test/emacs-basic.right,
|
231
|
+
trunk/test/info-var.right: Need to present source filename
|
232
|
+
(__FILE__) as Ruby and therefore breakpoint
|
233
|
+
sees it.
|
234
|
+
|
235
|
+
|
236
|
+
2008-01-16 02:19 Rocky Bernstein
|
237
|
+
|
238
|
+
* trunk/ChangeLog, trunk/Rakefile, trunk/cli/ruby-debug/command.rb,
|
239
|
+
trunk/cli/ruby-debug/commands/breakpoints.rb,
|
240
|
+
trunk/cli/ruby-debug/commands/list.rb, ChangeLog,
|
241
|
+
ruby-debug-base.rb: Line caching moved to an external gem,
|
242
|
+
linecache. We now require
|
243
|
+
version 0.2 of that or greater.
|
244
|
+
|
245
|
+
2008-01-14 01:31 Rocky Bernstein
|
246
|
+
|
247
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/control.rb,
|
248
|
+
trunk/emacs/rdebug-core.el, trunk/emacs/rdebug-track.el,
|
249
|
+
ChangeLog: Make rdebug-track work better in the face of prompt
|
250
|
+
and error annotations.
|
251
|
+
control.rb: need another test when rdebug not called initially.
|
252
|
+
|
253
|
+
2008-01-13 21:51 Rocky Bernstein
|
254
|
+
|
255
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/breakpoints.rb,
|
256
|
+
trunk/emacs/rdebug-core.el, trunk/emacs/rdebug-frames.el,
|
257
|
+
trunk/emacs/rdebug-source.el, trunk/ext/breakpoint.c, ChangeLog:
|
258
|
+
Some stack -> frame renaming
|
259
|
+
ext/breakpoint.c: put methods in alpha order (to help with
|
260
|
+
reference man)
|
261
|
+
breakpoints.rb: one print -> errmsg
|
262
|
+
|
263
|
+
2008-01-13 18:13 Rocky Bernstein
|
264
|
+
|
265
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/condition.rb,
|
266
|
+
trunk/cli/ruby-debug/commands/control.rb,
|
267
|
+
trunk/cli/ruby-debug/commands/display.rb,
|
268
|
+
trunk/cli/ruby-debug/commands/edit.rb,
|
269
|
+
trunk/cli/ruby-debug/commands/frame.rb,
|
270
|
+
trunk/cli/ruby-debug/commands/help.rb,
|
271
|
+
trunk/cli/ruby-debug/commands/info.rb,
|
272
|
+
trunk/cli/ruby-debug/interface.rb,
|
273
|
+
trunk/cli/ruby-debug/processor.rb, trunk/emacs/Makefile.am,
|
274
|
+
trunk/emacs/rdebug-core.el, trunk/emacs/rdebug-error.el,
|
275
|
+
trunk/emacs/rdebug-output.el, trunk/emacs/rdebug-source.el,
|
276
|
+
ChangeLog, trunk/test/annotate.cmd, trunk/test/annotate.right,
|
277
|
+
trunk/test/breakpoints.right, trunk/test/condition.right,
|
278
|
+
trunk/test/edit.right, trunk/test/emacs-basic.right,
|
279
|
+
trunk/test/frame.right: Create errmsg routine for error output,
|
280
|
+
start tagging error messages
|
281
|
+
as errors. Under annotate 3, output errors similar to gdb
|
282
|
+
--annotate
|
283
|
+
does (although still simplified). Have Emacs pick up debugger
|
284
|
+
error
|
285
|
+
annotations.
|
286
|
+
|
287
|
+
2008-01-13 04:05 Rocky Bernstein
|
288
|
+
|
289
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/command.rb,
|
290
|
+
trunk/cli/ruby-debug/commands/breakpoints.rb,
|
291
|
+
trunk/cli/ruby-debug/commands/enable.rb,
|
292
|
+
trunk/cli/ruby-debug/helper.rb,
|
293
|
+
trunk/cli/ruby-debug/interface.rb,
|
294
|
+
trunk/cli/ruby-debug/processor.rb, ChangeLog,
|
295
|
+
trunk/test/condition.cmd, trunk/test/condition.right: Check
|
296
|
+
validity of expressions in breakpoint conditions and don't allow
|
297
|
+
enabling a syntactically invalid expression.
|
298
|
+
|
299
|
+
Start noting messages which are errors via an errmsg routine.
|
300
|
+
|
301
|
+
2008-01-11 10:26 Rocky Bernstein
|
302
|
+
|
303
|
+
* trunk/ChangeLog, trunk/bin/rdebug, trunk/doc/ruby-debug.texi,
|
304
|
+
ChangeLog: Document that ruby-debug resets $0. Align program
|
305
|
+
options in ref manual and --help. Alphabetize better.
|
306
|
+
|
307
|
+
2008-01-10 22:56 Rocky Bernstein
|
308
|
+
|
309
|
+
* trunk/ChangeLog, trunk/bin/rdebug, ChangeLog,
|
310
|
+
trunk/test/dollar-0.rb, trunk/test/dollar-0.right,
|
311
|
+
trunk/test/dollar-0a.right, trunk/test/dollar-0b.right,
|
312
|
+
trunk/test/test-dollar-0.rb: More correct $0 fix. Deal with the
|
313
|
+
case ./ is automatically added.
|
314
|
+
However this might not be right in all cases.
|
315
|
+
|
316
|
+
2008-01-10 22:25 Rocky Bernstein
|
317
|
+
|
318
|
+
* trunk/ChangeLog, trunk/emacs/rdebug-core.el,
|
319
|
+
trunk/emacs/test/test-core.el, ChangeLog: Was gobbling arg in
|
320
|
+
processing --emacs. Add test.
|
321
|
+
|
322
|
+
2008-01-10 10:34 Rocky Bernstein
|
323
|
+
|
324
|
+
* trunk/CHANGES, trunk/ChangeLog,
|
325
|
+
trunk/cli/ruby-debug/commands/condition.rb,
|
326
|
+
trunk/cli/ruby-debug/commands/enable.rb,
|
327
|
+
trunk/cli/ruby-debug/processor.rb, trunk/doc/ruby-debug.texi,
|
328
|
+
trunk/emacs/Makefile.am, trunk/emacs/rdebug-breaks.el,
|
329
|
+
trunk/emacs/rdebug-regexp.el, trunk/emacs/test/test-regexp.el,
|
330
|
+
trunk/ext/breakpoint.c, ChangeLog, trunk/test/condition.cmd,
|
331
|
+
trunk/test/condition.right, trunk/test/test-breakpoints.rb,
|
332
|
+
trunk/test/test-condition.rb: Add condition command.
|
333
|
+
|
334
|
+
2008-01-09 19:10 Rocky Bernstein
|
335
|
+
|
336
|
+
* trunk/ChangeLog, trunk/Rakefile, trunk/emacs/rdebug-dbg.el,
|
337
|
+
ChangeLog: Rakefile: rdebug.rb -> rdbg.el
|
338
|
+
rdebug-dbg.el: Add $Id$
|
339
|
+
|
340
|
+
2008-01-09 19:03 Rocky Bernstein
|
341
|
+
|
342
|
+
* trunk/ChangeLog, trunk/emacs/Makefile.am,
|
343
|
+
trunk/emacs/rdebug-breaks.el, trunk/emacs/rdebug-cmd.el,
|
344
|
+
trunk/emacs/rdebug-core.el, trunk/emacs/rdebug-dbg.el,
|
345
|
+
trunk/emacs/rdebug-frames.el, trunk/emacs/rdebug-help.el,
|
346
|
+
trunk/emacs/rdebug-output.el, trunk/emacs/rdebug-secondary.el,
|
347
|
+
trunk/emacs/rdebug-track.el, trunk/emacs/rdebug-varbuf.el,
|
348
|
+
trunk/emacs/rdebug-watch.el, trunk/emacs/test/test-indent.el,
|
349
|
+
trunk/emacs/test/test-regexp.el, ChangeLog: Break out secondary
|
350
|
+
buffer into their own file, and also internal
|
351
|
+
debug code and general secondary commands. Secondary buffer code
|
352
|
+
removed from rdebug-cmd and moved into the appropriate file.
|
353
|
+
|
354
|
+
rdebug-edit-variables-value is not defined so comment out for
|
355
|
+
now.
|
356
|
+
|
357
|
+
2008-01-08 16:04 Rocky Bernstein
|
358
|
+
|
359
|
+
* trunk/ChangeLog, ChangeLog, trunk/rdbg.rb: Restore $: to the
|
360
|
+
value it was before rdebug call.
|
361
|
+
|
362
|
+
2008-01-07 20:38 Rocky Bernstein
|
363
|
+
|
364
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/info.rb,
|
365
|
+
trunk/cli/ruby-debug/commands/variables.rb, ChangeLog: Add "var
|
366
|
+
class". This means "var const .." can no longer be abbreviated
|
367
|
+
"var c"; use "var co" instead.
|
368
|
+
(Or "var const" or "var constant"
|
369
|
+
|
370
|
+
2008-01-07 19:57 Rocky Bernstein
|
371
|
+
|
372
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/info.rb,
|
373
|
+
ChangeLog, trunk/test/info-var-bug.rb, trunk/test/info-var.cmd,
|
374
|
+
trunk/test/info-var.right: Add class level variables to "info
|
375
|
+
variables"
|
376
|
+
|
377
|
+
2008-01-07 17:37 Rocky Bernstein
|
378
|
+
|
379
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/info.rb,
|
380
|
+
ChangeLog, trunk/test/annotate.right,
|
381
|
+
trunk/test/info-var-bug2.right, trunk/test/info-var.right,
|
382
|
+
trunk/test/output.right, trunk/test/test-info-var.rb: Add "self"
|
383
|
+
to list "info variables" spits out.
|
384
|
+
|
385
|
+
2008-01-07 09:59 Rocky Bernstein
|
386
|
+
|
387
|
+
* trunk/ChangeLog, trunk/Rakefile, trunk/bin/rdebug,
|
388
|
+
trunk/emacs/rdebug-core.el, ChangeLog: --emacs sets width to 120.
|
389
|
+
rdebug-core.el will reset to 120 unless it's already that.
|
390
|
+
|
391
|
+
2008-01-07 04:29 Rocky Bernstein
|
392
|
+
|
393
|
+
* trunk/ChangeLog, trunk/Makefile.am, trunk/ext/ChangeLog,
|
394
|
+
ChangeLog: Split out ChangeLogs better (I hope).
|
395
|
+
|
396
|
+
2008-01-06 20:56 Rocky Bernstein
|
397
|
+
|
398
|
+
* trunk/ChangeLog, trunk/bin/rdebug,
|
399
|
+
trunk/cli/ruby-debug/processor.rb, trunk/emacs/rdebug-core.el,
|
400
|
+
trunk/emacs/rdebug-regexp.el, trunk/emacs/test/test-regexp.el,
|
401
|
+
trunk/ext/ChangeLog, ChangeLog, trunk/test/emacs-basic.cmd,
|
402
|
+
trunk/test/emacs-basic.right, trunk/test/quit.right,
|
403
|
+
trunk/test/tdebug.rb, trunk/test/test-emacs-basic.rb:
|
404
|
+
test/*-emacs-basic*, tdebug: Add test of running in Emacs without
|
405
|
+
annotations.
|
406
|
+
|
407
|
+
emacs/*.el: make regexp tests work again, move regexp to from
|
408
|
+
core to regexp.
|
409
|
+
Add an annotate regexp test.
|
410
|
+
|
411
|
+
processor.rb: Remove some anotation print from bleeding into
|
412
|
+
output
|
413
|
+
when annotations are not wanted. Reinstate "Program finished" in
|
414
|
+
annotations and outside (rdebug).
|
415
|
+
|
416
|
+
2008-01-06 18:55 Rocky Bernstein
|
417
|
+
|
418
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/processor.rb,
|
419
|
+
trunk/emacs/Makefile.am, trunk/emacs/rdebug-core.el,
|
420
|
+
trunk/emacs/test/test-indent.el, trunk/ext/ChangeLog, ChangeLog,
|
421
|
+
trunk/test/annotate.right, trunk/test/output.right: Create
|
422
|
+
Processor class and subclass that. Perhaps a mixin would be good.
|
423
|
+
Remove annotation output bleanding when annotate is off.
|
424
|
+
Try to reduce the mess annotations is adding to processor.rb
|
425
|
+
rdebug-core.el: fix indentation to pass the regression test
|
426
|
+
Anders added
|
427
|
+
Makefile.am: Add rdebug-source.el to distribution.
|
428
|
+
Make sure "rake test"
|
429
|
+
|
430
|
+
2008-01-06 02:15 Rocky Bernstein
|
431
|
+
|
432
|
+
* trunk/ChangeLog, trunk/bin/rdebug,
|
433
|
+
trunk/cli/ruby-debug/commands/breakpoints.rb,
|
434
|
+
trunk/cli/ruby-debug/commands/control.rb,
|
435
|
+
trunk/cli/ruby-debug/commands/save.rb,
|
436
|
+
trunk/cli/ruby-debug/commands/script.rb,
|
437
|
+
trunk/cli/ruby-debug/interface.rb,
|
438
|
+
trunk/cli/ruby-debug/processor.rb, trunk/ext/ChangeLog,
|
439
|
+
ChangeLog: Some work on saving state across a restart. More work
|
440
|
+
is needed on the
|
441
|
+
script command to get this working. The save-file name is now
|
442
|
+
optional. save.rb split off from script.rb Display expressions
|
443
|
+
and
|
444
|
+
some settings are now captured in the save/restore file.
|
445
|
+
Add interface.finalize - things that need to be done before quit
|
446
|
+
or
|
447
|
+
restart.
|
448
|
+
|
449
|
+
2008-01-05 21:16 Rocky Bernstein
|
450
|
+
|
451
|
+
* trunk/ChangeLog, trunk/bin/rdebug,
|
452
|
+
trunk/cli/ruby-debug/interface.rb,
|
453
|
+
trunk/cli/ruby-debug/processor.rb, trunk/ext/ChangeLog,
|
454
|
+
ChangeLog, trunk/test/annotate.right, trunk/test/output.cmd,
|
455
|
+
trunk/test/output.right, trunk/test/quit.right,
|
456
|
+
trunk/test/tdebug.rb, trunk/test/test-output.rb: More work to
|
457
|
+
make annotate more like gdb's. starting/stopping/exiting
|
458
|
+
should be more similar. Some code has been commented out until we
|
459
|
+
get
|
460
|
+
the Emacs interface to match. See "FIXME: ANNOTATE" in
|
461
|
+
processor.rb.
|
462
|
+
Also regression tests for output and annotate currently fail for
|
463
|
+
this
|
464
|
+
reason.
|
465
|
+
|
466
|
+
2008-01-02 20:35 Rocky Bernstein
|
467
|
+
|
468
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/breakpoints.rb,
|
469
|
+
trunk/cli/ruby-debug/helper.rb, trunk/ext/ChangeLog, ChangeLog:
|
470
|
+
helper.rb: add regexp for a position. TODO: add parsing routine
|
471
|
+
and use in
|
472
|
+
various commands
|
473
|
+
|
474
|
+
2008-01-02 14:41 Rocky Bernstein
|
475
|
+
|
476
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/processor.rb,
|
477
|
+
trunk/emacs/rdebug.el, trunk/ext/ChangeLog, ChangeLog,
|
478
|
+
trunk/test/annotate.right: processor.rb: Redo where
|
479
|
+
starting/exiting annotations are done.
|
480
|
+
rdebug.el: back off on setting output command for now.
|
481
|
+
|
482
|
+
2008-01-01 15:23 Rocky Bernstein
|
483
|
+
|
484
|
+
* trunk/ChangeLog, trunk/bin/rdebug, trunk/ext/ChangeLog,
|
485
|
+
ChangeLog: Fix --emacs to do --no-quit properly.
|
486
|
+
|
487
|
+
2008-01-01 09:00 Rocky Bernstein
|
488
|
+
|
489
|
+
* trunk/ChangeLog, trunk/ext/ChangeLog, trunk/ext/breakpoint.c,
|
490
|
+
trunk/ext/ruby_debug.c, trunk/ext/ruby_debug.h, ChangeLog: Remove
|
491
|
+
RDoc warnings caused because C files have been split up.
|
492
|
+
|
493
|
+
2008-01-01 05:51 Rocky Bernstein
|
494
|
+
|
495
|
+
* trunk/ChangeLog, trunk/emacs/Makefile.am,
|
496
|
+
trunk/emacs/test/test-indent.el,
|
497
|
+
trunk/emacs/test/test-reindent.el, trunk/ext/ChangeLog,
|
498
|
+
ChangeLog: reindent -> indent. Makefile.am: wasn't including all
|
499
|
+
test files.
|
500
|
+
|
501
|
+
2007-12-31 06:26 Rocky Bernstein
|
502
|
+
|
503
|
+
* trunk/ChangeLog, trunk/Rakefile, trunk/ext/ChangeLog, ChangeLog:
|
504
|
+
Rakefile: add spit-off C files to ruby-debug-base gem.
|
505
|
+
|
506
|
+
2007-12-31 06:23 Rocky Bernstein
|
507
|
+
|
508
|
+
* trunk/ChangeLog, trunk/emacs/rdebug-test-cmd.el,
|
509
|
+
trunk/ext/ChangeLog, ChangeLog: rdebug-test-cmd.el: Indentation
|
510
|
+
|
511
|
+
2007-12-31 06:08 Rocky Bernstein
|
512
|
+
|
513
|
+
* trunk/CHANGES, trunk/ChangeLog, ChangeLog: Changes and more
|
514
|
+
changes.
|
515
|
+
|
516
|
+
2007-12-29 13:31 Rocky Bernstein
|
517
|
+
|
518
|
+
* trunk/ChangeLog, trunk/bin/rdebug,
|
519
|
+
trunk/cli/ruby-debug/command.rb, trunk/ext/ChangeLog, ChangeLog,
|
520
|
+
trunk/test/helper.rb, trunk/test/noquit.right,
|
521
|
+
trunk/test/null.rb, trunk/test/quit.cmd, trunk/test/quit.right,
|
522
|
+
trunk/test/tdebug.rb: Remove looping on quit. "-n" is broken so
|
523
|
+
remove it for now.
|
524
|
+
|
525
|
+
2007-12-28 15:33 Rocky Bernstein
|
526
|
+
|
527
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/display.rb,
|
528
|
+
trunk/cli/ruby-debug/commands/info.rb,
|
529
|
+
trunk/cli/ruby-debug/processor.rb, trunk/ext/ChangeLog,
|
530
|
+
ChangeLog, trunk/test/annotate.right, trunk/test/display.cmd,
|
531
|
+
trunk/test/display.right: info.rb: Incorrect test for no display
|
532
|
+
expressions.
|
533
|
+
display.rb: Grammar thing.
|
534
|
+
processor.rb: Slightly cleaner code
|
535
|
+
test/* more/better tests.
|
536
|
+
|
537
|
+
2007-12-27 21:03 Rocky Bernstein
|
538
|
+
|
539
|
+
* trunk/ChangeLog, trunk/emacs/rdebug-track.el,
|
540
|
+
trunk/ext/ChangeLog, ChangeLog: Be more agressive about resetting
|
541
|
+
gud-last-frame and
|
542
|
+
gud-last-last-frame. These foul up tracking when debugging is
|
543
|
+
interrupted.
|
544
|
+
We probably need a special "reset" command.
|
545
|
+
|
546
|
+
2007-12-26 18:35 Rocky Bernstein
|
547
|
+
|
548
|
+
* trunk/ChangeLog, trunk/ext/ChangeLog, trunk/ext/ruby_debug.c,
|
549
|
+
ChangeLog: Version number games - maybe 0.10.1 is better.
|
550
|
+
|
551
|
+
2007-12-25 23:40 Rocky Bernstein
|
552
|
+
|
553
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/stepping.rb,
|
554
|
+
trunk/doc/ruby-debug.texi, trunk/ext/ChangeLog, ChangeLog,
|
555
|
+
trunk/test/stepping.cmd, trunk/test/stepping.right: Add step- and
|
556
|
+
step+. Document as well as the new toggle command.
|
557
|
+
|
558
|
+
2007-12-25 09:55 Rocky Bernstein
|
559
|
+
|
560
|
+
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/stepping.rb,
|
561
|
+
trunk/doc/ruby-debug.texi, trunk/emacs/rdebug-core.el,
|
562
|
+
trunk/ext/ChangeLog, ChangeLog: Small doc fixes.
|
563
|
+
|
564
|
+
2007-12-25 07:51 Rocky Bernstein
|
565
|
+
|
566
|
+
* trunk/ChangeLog, trunk/ext/ChangeLog, ChangeLog: Last commit
|
567
|
+
before 0.10.0 release.
|
568
|
+
|
569
|
+
2007-12-25 02:51 Rocky Bernstein
|
570
|
+
|
571
|
+
* trunk/AUTHORS, trunk/ChangeLog, trunk/README,
|
572
|
+
trunk/ext/ChangeLog, ChangeLog, trunk/test/breakpoints.cmd,
|
573
|
+
trunk/test/breakpoints.right: breakpoints.*: main -> Object. Add
|
574
|
+
bad Class name test
|
575
|
+
AUTHOR: Add Anders
|
576
|
+
README: note ruby-debug-extra. More precise (I think)
|
577
|
+
|
578
|
+
2007-12-24 00:25 Rocky Bernstein
|
579
|
+
|
580
|
+
* trunk/ChangeLog, trunk/Rakefile, trunk/ext/ChangeLog, ChangeLog:
|
581
|
+
Rakefile: set up gem unit test for ruby-debug-base. Add file in
|
582
|
+
test/
|
583
|
+
so we could do the same for ruby-debug were it not for other
|
584
|
+
mysterious
|
585
|
+
problems.
|
586
|
+
|
587
|
+
2007-12-23 17:33 Rocky Bernstein
|
588
|
+
|
589
|
+
* trunk/CHANGES, trunk/ChangeLog, trunk/Makefile.am,
|
590
|
+
trunk/Rakefile, trunk/doc, trunk/ext/ChangeLog, ChangeLog,
|
591
|
+
trunk/svn2cl_usermap, trunk/test/test-columnize.rb,
|
592
|
+
trunk/test/test-ruby-debug-base.rb,
|
593
|
+
trunk/test/test-ruby-debug.rb: Go over packaging:
|
594
|
+
ChangeLogs for ruby-debug-base (in ext and lib) separate from CLI
|
595
|
+
ChangeLog
|
596
|
+
ChangeLogs now map userid to names
|
597
|
+
ruby-debug-base regression test included in ruby-debug-base
|
598
|
+
Columnize test separated. (It will disappear when ruby-debug
|
599
|
+
requires it
|
600
|
+
as an external)
|
601
|
+
|
602
|
+
2007-12-16 21:31 Rocky Bernstein
|
603
|
+
|
604
|
+
* trunk, trunk/ChangeLog, trunk/cli/ruby-debug/commands/info.rb,
|
605
|
+
trunk/doc, trunk/emacs, trunk/ext, ruby-debug-base.rb,
|
606
|
+
trunk/test/helper.rb, trunk/test/info-var-bug.rb,
|
607
|
+
trunk/test/info-var.cmd, trunk/test/info-var.right,
|
608
|
+
trunk/test/runall, trunk/test/test-breakpoints.rb,
|
609
|
+
trunk/test/test-display.rb, trunk/test/test-help.rb,
|
610
|
+
trunk/test/test-info-var.rb: Add "info variables test".
|
611
|
+
|
612
|
+
ruby-debug-base.rb: Not sure how test(?M, file) ever worked
|
613
|
+
before but change
|
614
|
+
to use File.stat(file).mtime
|
615
|
+
info.rb: ignore debugger variables which are sometimes set.
|
616
|
+
|
617
|
+
2007-12-10 03:23 Rocky Bernstein
|
618
|
+
|
619
|
+
* trunk/doc/ruby-debug.texi, ruby-debug-base.rb: doc changes.
|
620
|
+
|
621
|
+
2007-06-26 07:05 Rocky Bernstein
|
622
|
+
|
623
|
+
* trunk/CHANGES, trunk/bin/rdebug, trunk/cli/ruby-debug.rb,
|
624
|
+
ruby-debug-base.rb: Run .rdebugrc on Debugger.start. Look for
|
625
|
+
this in the current directory and run that instead the one in
|
626
|
+
$HOME if that exists. Again, inspired and compatible with gdb.
|
627
|
+
|
628
|
+
rdebug: Check script for syntax errors before loading. We get
|
629
|
+
more informative errors and it doesn't look like rdebug is at
|
630
|
+
fault.
|
631
|
+
|
632
|
+
2007-06-05 16:36 Kent Sibilev
|
633
|
+
|
634
|
+
* trunk/bin/rdebug, trunk/cli/ruby-debug/command.rb,
|
635
|
+
trunk/cli/ruby-debug/commands/breakpoints.rb,
|
636
|
+
trunk/cli/ruby-debug/commands/control.rb,
|
637
|
+
trunk/cli/ruby-debug/commands/display.rb,
|
638
|
+
trunk/cli/ruby-debug/commands/eval.rb,
|
639
|
+
trunk/cli/ruby-debug/commands/frame.rb,
|
640
|
+
trunk/cli/ruby-debug/commands/help.rb,
|
641
|
+
trunk/cli/ruby-debug/commands/info.rb,
|
642
|
+
trunk/cli/ruby-debug/commands/method.rb,
|
643
|
+
trunk/cli/ruby-debug/commands/script.rb,
|
644
|
+
trunk/cli/ruby-debug/commands/settings.rb,
|
645
|
+
trunk/cli/ruby-debug/commands/show.rb,
|
646
|
+
trunk/cli/ruby-debug/commands/stepping.rb,
|
647
|
+
trunk/cli/ruby-debug/commands/threads.rb,
|
648
|
+
trunk/cli/ruby-debug/commands/variables.rb,
|
649
|
+
trunk/cli/ruby-debug/interface.rb,
|
650
|
+
trunk/cli/ruby-debug/processor.rb, trunk/ext/ruby_debug.c,
|
651
|
+
ruby-debug-base.rb: code reorganization.
|
652
|
+
reverted 'run' command.
|
653
|
+
|
654
|
+
2007-06-05 07:59 Kent Sibilev
|
655
|
+
|
656
|
+
* ruby-debug-base.rb: restore post_mortem
|
657
|
+
|
658
|
+
2007-06-02 15:01 Rocky Bernstein
|
659
|
+
|
660
|
+
* trunk/cli/ruby-debug/processor.rb, trunk/emacs/rdebug-track.el,
|
661
|
+
ruby-debug-base.rb: lib/ruby-debug-base.rb: add Quit and Restart
|
662
|
+
exceptions which can reliably be used after the delayed exception
|
663
|
+
handling bug is fixed
|
664
|
+
emacs/rdebug-track.el and cli/ruby-debug/processor.rb: more
|
665
|
+
accurate line tracking in EMACS. When not in emacs should be more
|
666
|
+
like what was there.
|
667
|
+
|
668
|
+
2007-06-01 21:57 Rocky Bernstein
|
669
|
+
|
670
|
+
* ruby-debug-base.rb: parens around a print seems to give a
|
671
|
+
warning. Remove.
|
672
|
+
|
673
|
+
2007-05-23 16:43 Rocky Bernstein
|
674
|
+
|
675
|
+
* ruby-debug-base.rb: post_mortem: to test $! *before* running
|
676
|
+
debug_at_ext or else we may get an erroneous message:
|
677
|
+
ruby-debug-base.rb:162:in `current_context': Debugger.start is
|
678
|
+
not called yet. (RuntimeError)
|
679
|
+
|
680
|
+
A simple test case to show the problem:
|
681
|
+
|
682
|
+
"require rubygems"
|
683
|
+
"require ruby-debug"
|
684
|
+
Debugger.start
|
685
|
+
Debugger.post_mortem
|
686
|
+
exit # Causes us to incorrectly give the above error
|
687
|
+
|
688
|
+
2007-05-15 20:22 Kent Sibilev
|
689
|
+
|
690
|
+
* trunk/CHANGES, trunk/cli/ruby-debug/command.rb,
|
691
|
+
trunk/cli/ruby-debug/commands/breakpoints.rb,
|
692
|
+
trunk/cli/ruby-debug/commands/frame.rb,
|
693
|
+
trunk/cli/ruby-debug/commands/stepping.rb,
|
694
|
+
trunk/cli/ruby-debug/commands/threads.rb,
|
695
|
+
trunk/cli/ruby-debug/commands/variables.rb, ruby-debug-base.rb:
|
696
|
+
various fixes
|
697
|
+
|
698
|
+
2007-04-27 23:21 Kent Sibilev
|
699
|
+
|
700
|
+
* ruby-debug-base.rb: ditto
|
701
|
+
|
702
|
+
2007-04-27 23:19 Kent Sibilev
|
703
|
+
|
704
|
+
* ruby-debug-base.rb: add breakpoint method as an alias for
|
705
|
+
debugger in case breakpoint method is not defined already
|
706
|
+
|
707
|
+
2007-03-25 01:03 Kent Sibilev
|
708
|
+
|
709
|
+
* ruby-debug-base.rb: will start the debugger if necessary
|
710
|
+
|
711
|
+
2007-03-24 18:17 Kent Sibilev
|
712
|
+
|
713
|
+
* branches/stable, trunk: stable becomes the trunk
|
714
|
+
|
715
|
+
2007-03-13 17:06 Kent Sibilev
|
716
|
+
|
717
|
+
* branches/stable/Rakefile,
|
718
|
+
branches/stable/cli/ruby-debug/commands/list.rb,
|
719
|
+
branches/stable/lib/ruby-debug-base.rb: fixed rdoc
|
720
|
+
|
721
|
+
2007-03-01 23:44 Kent Sibilev
|
722
|
+
|
723
|
+
* branches/stable/lib/ruby-debug,
|
724
|
+
branches/stable/lib/ruby-debug-base.rb: fixed post-mortem
|
725
|
+
|
726
|
+
2007-02-27 08:02 Kent Sibilev
|
727
|
+
|
728
|
+
* branches/stable/Rakefile, branches/stable/cli,
|
729
|
+
branches/stable/cli/ruby-debug,
|
730
|
+
branches/stable/cli/ruby-debug/command.rb,
|
731
|
+
branches/stable/cli/ruby-debug/commands,
|
732
|
+
branches/stable/cli/ruby-debug/interface.rb,
|
733
|
+
branches/stable/cli/ruby-debug/processor.rb,
|
734
|
+
branches/stable/ext/ruby_debug.c,
|
735
|
+
branches/stable/lib/ruby-debug-base.rb,
|
736
|
+
branches/stable/lib/ruby-debug.rb,
|
737
|
+
branches/stable/lib/ruby-debug/command.rb,
|
738
|
+
branches/stable/lib/ruby-debug/commands,
|
739
|
+
branches/stable/lib/ruby-debug/interface.rb,
|
740
|
+
branches/stable/lib/ruby-debug/processor.rb: repackaging
|
741
|
+
ruby-debug
|
742
|
+
|
743
|
+
2007-02-23 20:56 Kent Sibilev
|
744
|
+
|
745
|
+
* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
|
746
|
+
branches/stable/lib/ruby-debug.rb: added an option for
|
747
|
+
Debugger.debug_load to stop at the first line of code
|
748
|
+
|
749
|
+
2007-02-12 06:59 Kent Sibilev
|
750
|
+
|
751
|
+
* branches/stable/bin/rdebug,
|
752
|
+
branches/stable/lib/ruby-debug/processor.rb: added --emacs option
|
753
|
+
|
754
|
+
2007-02-09 16:56 Kent Sibilev
|
755
|
+
|
756
|
+
* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
|
757
|
+
branches/stable/lib/ruby-debug.rb: in remote mode the debugger
|
758
|
+
shouldn't stop inside of rdebug script
|
759
|
+
|
760
|
+
2007-02-09 06:20 Kent Sibilev
|
761
|
+
|
762
|
+
* branches/stable/bin/rdebug,
|
763
|
+
branches/stable/lib/ruby-debug/interface.rb: --
|
764
|
+
|
765
|
+
2007-02-09 01:00 Kent Sibilev
|
766
|
+
|
767
|
+
* branches/stable/bin/rdebug, branches/stable/lib/ruby-debug.rb,
|
768
|
+
branches/stable/lib/ruby-debug/commands/list.rb,
|
769
|
+
branches/stable/lib/ruby-debug/commands/settings.rb: fixed code
|
770
|
+
reloading
|
771
|
+
made 'reload on' as a part of the 'set' command
|
772
|
+
evaluate ~/.rdebugrc as an init script
|
773
|
+
|
774
|
+
2007-02-07 02:42 Kent Sibilev
|
775
|
+
|
776
|
+
* branches/stable/ext/ruby_debug.c,
|
777
|
+
branches/stable/lib/ruby-debug/commands/threads.rb,
|
778
|
+
branches/stable/lib/ruby-debug/processor.rb: should use ignored?
|
779
|
+
method to check for the debugger's thread
|
780
|
+
|
781
|
+
2007-02-06 22:21 Kent Sibilev
|
782
|
+
|
783
|
+
* branches/stable/lib/ruby-debug/command.rb:
|
784
|
+
|
785
|
+
2007-02-05 22:48 Kent Sibilev
|
786
|
+
|
787
|
+
* branches/stable/lib/ruby-debug/commands/frame.rb: --
|
788
|
+
|
789
|
+
2007-02-05 22:11 Kent Sibilev
|
790
|
+
|
791
|
+
* branches/stable/lib/ruby-debug/commands/frame.rb: fixed emacs
|
792
|
+
integration
|
793
|
+
|
794
|
+
2007-02-05 20:16 Kent Sibilev
|
795
|
+
|
796
|
+
* branches/stable/ext/ruby_debug.c,
|
797
|
+
branches/stable/lib/ruby-debug/commands/frame.rb: fixed another
|
798
|
+
issue where a bogus frame is being left in the stack
|
799
|
+
|
800
|
+
2007-02-04 23:36 Kent Sibilev
|
801
|
+
|
802
|
+
* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
|
803
|
+
branches/stable/lib/ruby-debug/commands/settings.rb: seg fault
|
804
|
+
bugfixes
|
805
|
+
fixed suspend/resume
|
806
|
+
|
807
|
+
2007-02-04 03:49 Kent Sibilev
|
808
|
+
|
809
|
+
* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
|
810
|
+
branches/stable/lib/ruby-debug.rb: A better fix for the
|
811
|
+
segmentation fault
|
812
|
+
|
813
|
+
2007-02-03 20:24 Kent Sibilev
|
814
|
+
|
815
|
+
* branches/stable/ext/ruby_debug.c,
|
816
|
+
branches/stable/lib/ruby-debug.rb,
|
817
|
+
branches/stable/lib/ruby-debug/processor.rb: fix seg fault by
|
818
|
+
avoiding ruby's bug
|
819
|
+
fixed Context#resume
|
820
|
+
when handling post-mortem all threads must be suspended
|
821
|
+
|
822
|
+
2007-02-02 18:47 Kent Sibilev
|
823
|
+
|
824
|
+
* branches/stable/ext/ruby_debug.c,
|
825
|
+
branches/stable/lib/ruby-debug/commands/frame.rb: removed
|
826
|
+
ambiguity with down command
|
827
|
+
|
828
|
+
2007-02-01 23:48 Kent Sibilev
|
829
|
+
|
830
|
+
* branches/stable/lib/ruby-debug/commands/settings.rb: typo
|
831
|
+
|
832
|
+
2007-02-01 22:15 Kent Sibilev
|
833
|
+
|
834
|
+
* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
|
835
|
+
branches/stable/lib/ruby-debug/commands/eval.rb: made eval
|
836
|
+
command available from the control thread
|
837
|
+
|
838
|
+
2007-02-01 07:22 Kent Sibilev
|
839
|
+
|
840
|
+
* branches/stable/ext/ruby_debug.c,
|
841
|
+
branches/stable/lib/ruby-debug/command.rb,
|
842
|
+
branches/stable/lib/ruby-debug/commands/breakpoints.rb,
|
843
|
+
branches/stable/lib/ruby-debug/commands/eval.rb,
|
844
|
+
branches/stable/lib/ruby-debug/commands/frame.rb,
|
845
|
+
branches/stable/lib/ruby-debug/commands/list.rb,
|
846
|
+
branches/stable/lib/ruby-debug/commands/settings.rb,
|
847
|
+
branches/stable/lib/ruby-debug/commands/threads.rb: added setting
|
848
|
+
command
|
849
|
+
added Context#suspended? method
|
850
|
+
dispay suspended status in the thread list
|
851
|
+
display frame starting from zero
|
852
|
+
|
853
|
+
2007-01-31 21:13 Kent Sibilev
|
854
|
+
|
855
|
+
* branches/stable/lib/ruby-debug/commands/frame.rb: ditto
|
856
|
+
|
857
|
+
2007-01-31 21:12 Kent Sibilev
|
858
|
+
|
859
|
+
* branches/stable/lib/ruby-debug/commands/frame.rb: fixed help
|
860
|
+
command
|
861
|
+
|
862
|
+
2007-01-31 19:39 Kent Sibilev
|
863
|
+
|
864
|
+
* branches/stable/ext/ruby_debug.c,
|
865
|
+
branches/stable/lib/ruby-debug/command.rb: fixed frame count
|
866
|
+
added frame_self method to context
|
867
|
+
|
868
|
+
2007-01-31 16:48 Kent Sibilev
|
869
|
+
|
870
|
+
* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
|
871
|
+
branches/stable/lib/ruby-debug.rb,
|
872
|
+
branches/stable/lib/ruby-debug/command.rb,
|
873
|
+
branches/stable/lib/ruby-debug/commands/eval.rb,
|
874
|
+
branches/stable/lib/ruby-debug/commands/frame.rb,
|
875
|
+
branches/stable/lib/ruby-debug/commands/irb.rb,
|
876
|
+
branches/stable/lib/ruby-debug/commands/variables.rb,
|
877
|
+
branches/stable/lib/ruby-debug/processor.rb: removed all
|
878
|
+
references to frames array
|
879
|
+
fixed post-mortem debugging
|
880
|
+
|
881
|
+
2007-01-31 00:51 Kent Sibilev
|
882
|
+
|
883
|
+
* branches/stable/lib/ruby-debug/commands/stepping.rb,
|
884
|
+
branches/stable/lib/ruby-debug/commands/threads.rb,
|
885
|
+
branches/stable/lib/ruby-debug/commands/tmate.rb,
|
886
|
+
branches/stable/lib/ruby-debug/processor.rb: removed obsolete
|
887
|
+
frames usage
|
888
|
+
|
889
|
+
2007-01-31 00:41 Kent Sibilev
|
890
|
+
|
891
|
+
* branches/stable/ext/ruby_debug.c,
|
892
|
+
branches/stable/lib/ruby-debug.rb,
|
893
|
+
branches/stable/lib/ruby-debug/commands/frame.rb,
|
894
|
+
branches/stable/lib/ruby-debug/commands/variables.rb,
|
895
|
+
branches/stable/lib/ruby-debug/processor.rb: refactored out frame
|
896
|
+
class and preallocate stack
|
897
|
+
made local variable available even when bindings are not
|
898
|
+
collected.
|
899
|
+
|
900
|
+
2007-01-28 20:25 Kent Sibilev
|
901
|
+
|
902
|
+
* branches/stable/lib/ruby-debug.rb: --
|
903
|
+
|
904
|
+
2007-01-28 06:22 Kent Sibilev
|
905
|
+
|
906
|
+
* branches/stable/AUTHORS, branches/stable/CHANGES,
|
907
|
+
branches/stable/Rakefile, branches/stable/ext/ruby_debug.c,
|
908
|
+
branches/stable/lib/ruby-debug/commands/frame.rb: - Control
|
909
|
+
thread is always started by rdebug script.
|
910
|
+
- Ability to specify negative frame number to frame commands.
|
911
|
+
Patch from R. Bernstein.
|
912
|
+
|
913
|
+
2007-01-28 04:52 Kent Sibilev
|
914
|
+
|
915
|
+
* branches/stable/CHANGES, branches/stable/bin/rdebug,
|
916
|
+
branches/stable/ext/ruby_debug.c,
|
917
|
+
branches/stable/lib/ruby-debug.rb,
|
918
|
+
branches/stable/lib/ruby-debug/commands/control.rb: added top
|
919
|
+
frame caching
|
920
|
+
control thread is always started by rdebug script
|
921
|
+
|
922
|
+
2007-01-27 01:43 Kent Sibilev
|
923
|
+
|
924
|
+
* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
|
925
|
+
branches/stable/lib/ruby-debug.rb,
|
926
|
+
branches/stable/lib/ruby-debug/command.rb,
|
927
|
+
branches/stable/lib/ruby-debug/commands/frame.rb,
|
928
|
+
branches/stable/lib/ruby-debug/commands/stepping.rb,
|
929
|
+
branches/stable/lib/ruby-debug/commands/threads.rb,
|
930
|
+
branches/stable/lib/ruby-debug/commands/tmate.rb,
|
931
|
+
branches/stable/lib/ruby-debug/processor.rb: another performance
|
932
|
+
optimization
|
933
|
+
|
934
|
+
2007-01-26 20:28 Kent Sibilev
|
935
|
+
|
936
|
+
* branches/stable/lib/ruby-debug.rb: fixed #7484
|
937
|
+
|
938
|
+
2007-01-26 17:59 Kent Sibilev
|
939
|
+
|
940
|
+
* branches/stable/ext/ruby_debug.c,
|
941
|
+
branches/stable/lib/ruby-debug/commands/breakpoints.rb: revisited
|
942
|
+
file name comparing procedure
|
943
|
+
|
944
|
+
2007-01-26 09:03 Kent Sibilev
|
945
|
+
|
946
|
+
* branches/stable/ext/ruby_debug.c,
|
947
|
+
branches/stable/lib/ruby-debug/commands/breakpoints.rb:
|
948
|
+
performance improvements
|
949
|
+
|
950
|
+
2007-01-26 03:12 Kent Sibilev
|
951
|
+
|
952
|
+
* branches/stable/CHANGES, branches/stable/bin/rdebug,
|
953
|
+
branches/stable/ext/ruby_debug.c,
|
954
|
+
branches/stable/lib/ruby-debug.rb,
|
955
|
+
branches/stable/lib/ruby-debug/command.rb,
|
956
|
+
branches/stable/lib/ruby-debug/commands/irb.rb,
|
957
|
+
branches/stable/lib/ruby-debug/commands/variables.rb,
|
958
|
+
branches/stable/lib/ruby-debug/processor.rb: added option to
|
959
|
+
exclude collecting of frame bindings
|
960
|
+
|
961
|
+
2007-01-24 18:33 Kent Sibilev
|
962
|
+
|
963
|
+
* branches/stable/bin/rdebug, branches/stable/lib/ruby-debug.rb:
|
964
|
+
disable tracing when in post-mortem
|
965
|
+
added -x/--trace option to rdebug script
|
966
|
+
|
967
|
+
2007-01-21 08:13 Kent Sibilev
|
968
|
+
|
969
|
+
* branches/stable/lib/ruby-debug/commands/breakpoints.rb:
|
970
|
+
|
971
|
+
2007-01-21 03:34 Kent Sibilev
|
972
|
+
|
973
|
+
* branches/stable/ext/ruby_debug.c,
|
974
|
+
branches/stable/lib/ruby-debug.rb,
|
975
|
+
branches/stable/lib/ruby-debug/commands/breakpoints.rb: assign an
|
976
|
+
id to the breakpoint
|
977
|
+
|
978
|
+
2007-01-21 01:20 Kent Sibilev
|
979
|
+
|
980
|
+
* branches/stable/ext/ruby_debug.c,
|
981
|
+
branches/stable/lib/ruby-debug.rb,
|
982
|
+
branches/stable/lib/ruby-debug/interface.rb,
|
983
|
+
branches/stable/lib/ruby-debug/processor.rb: added
|
984
|
+
post_mortem_method wrap method
|
985
|
+
|
986
|
+
2006-12-21 20:16 Kent Sibilev
|
987
|
+
|
988
|
+
* branches/stable/CHANGES, branches/stable/bin/rdebug,
|
989
|
+
branches/stable/lib/ruby-debug/commands/control.rb,
|
990
|
+
branches/stable/lib/ruby-debug/commands/frame.rb: added 'restart'
|
991
|
+
command
|
992
|
+
|
993
|
+
2006-12-21 14:12 Kent Sibilev
|
994
|
+
|
995
|
+
* branches/stable/lib/ruby-debug/command.rb,
|
996
|
+
branches/stable/lib/ruby-debug/commands/control.rb,
|
997
|
+
branches/stable/lib/ruby-debug/commands/stepping.rb,
|
998
|
+
branches/stable/lib/ruby-debug/commands/threads.rb,
|
999
|
+
branches/stable/lib/ruby-debug/processor.rb: made 'exit' an alias
|
1000
|
+
to 'quit'
|
1001
|
+
fixed the interoperability problem with rspec
|
1002
|
+
|
1003
|
+
2006-12-21 13:43 Kent Sibilev
|
1004
|
+
|
1005
|
+
* branches/stable/ext/ruby_debug.c,
|
1006
|
+
branches/stable/ext/win32/ruby_debug.so,
|
1007
|
+
branches/stable/lib/ruby-debug/commands/trace.rb: fixed trace
|
1008
|
+
command in post-mortem mode
|
1009
|
+
|
1010
|
+
2006-12-21 01:59 Kent Sibilev
|
1011
|
+
|
1012
|
+
* branches/stable/lib/ruby-debug/commands/irb.rb: initialize only
|
1013
|
+
once
|
1014
|
+
|
1015
|
+
2006-12-21 01:08 Kent Sibilev
|
1016
|
+
|
1017
|
+
* branches/stable/ext/ruby_debug.c,
|
1018
|
+
branches/stable/ext/win32/ruby_debug.so,
|
1019
|
+
branches/stable/lib/ruby-debug/commands/irb.rb: fixes irb help
|
1020
|
+
command
|
1021
|
+
|
1022
|
+
2006-12-20 21:19 Kent Sibilev
|
1023
|
+
|
1024
|
+
* branches/stable/ext/ruby_debug.c,
|
1025
|
+
branches/stable/lib/ruby-debug.rb: check that debugger has been
|
1026
|
+
started
|
1027
|
+
|
1028
|
+
2006-12-20 20:08 Kent Sibilev
|
1029
|
+
|
1030
|
+
* branches/stable/bin/rdebug, branches/stable/lib/ruby-debug.rb:
|
1031
|
+
added post-mortem option to rdebug
|
1032
|
+
|
1033
|
+
2006-12-20 19:38 Kent Sibilev
|
1034
|
+
|
1035
|
+
* branches/stable/ext/ruby_debug.c,
|
1036
|
+
branches/stable/lib/ruby-debug.rb,
|
1037
|
+
branches/stable/lib/ruby-debug/command.rb,
|
1038
|
+
branches/stable/lib/ruby-debug/commands/control.rb,
|
1039
|
+
branches/stable/lib/ruby-debug/commands/frame.rb,
|
1040
|
+
branches/stable/lib/ruby-debug/commands/irb.rb,
|
1041
|
+
branches/stable/lib/ruby-debug/commands/stepping.rb,
|
1042
|
+
branches/stable/lib/ruby-debug/commands/threads.rb,
|
1043
|
+
branches/stable/lib/ruby-debug/commands/tmate.rb,
|
1044
|
+
branches/stable/lib/ruby-debug/processor.rb: initial support for
|
1045
|
+
post-mortem debugging
|
1046
|
+
|
1047
|
+
2006-12-19 06:13 Kent Sibilev
|
1048
|
+
|
1049
|
+
* branches/stable/lib/ruby-debug/commands/stepping.rb: removed
|
1050
|
+
'run' alias
|
1051
|
+
|
1052
|
+
2006-12-18 08:34 Kent Sibilev
|
1053
|
+
|
1054
|
+
* branches/stable/ext/ruby_debug.c,
|
1055
|
+
branches/stable/lib/ruby-debug.rb,
|
1056
|
+
branches/stable/lib/ruby-debug/commands/irb.rb,
|
1057
|
+
branches/stable/lib/ruby-debug/commands/list.rb: added irb
|
1058
|
+
command
|
1059
|
+
fixed source_for method
|
1060
|
+
|
1061
|
+
2006-12-02 19:15 Kent Sibilev
|
1062
|
+
|
1063
|
+
* branches/stable/CHANGES, branches/stable/lib/ruby-debug.rb,
|
1064
|
+
branches/stable/lib/ruby-debug/commands/list.rb: added reload
|
1065
|
+
command
|
1066
|
+
|
1067
|
+
2006-12-02 18:32 Kent Sibilev
|
1068
|
+
|
1069
|
+
* branches/stable/lib/ruby-debug/command.rb,
|
1070
|
+
branches/stable/lib/ruby-debug/processor.rb: fixed #6518 and
|
1071
|
+
#6545
|
1072
|
+
|
1073
|
+
2006-12-01 06:47 Kent Sibilev
|
1074
|
+
|
1075
|
+
* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
|
1076
|
+
branches/stable/lib/ruby-debug.rb:
|
1077
|
+
|
1078
|
+
2006-11-21 23:29 Kent Sibilev
|
1079
|
+
|
1080
|
+
* branches/stable/lib/ruby-debug/commands/eval.rb: ensure that
|
1081
|
+
on/off is the last on the line
|
1082
|
+
|
1083
|
+
2006-11-16 00:04 Kent Sibilev
|
1084
|
+
|
1085
|
+
* branches/stable/lib/ruby-debug.rb: fixed debug_method for
|
1086
|
+
assignment methods
|
1087
|
+
|
1088
|
+
2006-11-16 00:01 Kent Sibilev
|
1089
|
+
|
1090
|
+
* branches/stable: added the new branch for the stable version
|
1091
|
+
|
1092
|
+
2006-10-15 22:43 Kent Sibilev
|
1093
|
+
|
1094
|
+
* branches/ver_0_4_4: branching a stable version
|
1095
|
+
|
1096
|
+
2006-10-15 22:26 Kent Sibilev
|
1097
|
+
|
1098
|
+
* trunk/ext/win32/ruby_debug.so, ruby-debug.rb: remove unused
|
1099
|
+
require
|
1100
|
+
uploaded new windows binary
|
1101
|
+
|
1102
|
+
2006-10-15 19:02 Kent Sibilev
|
1103
|
+
|
1104
|
+
* ruby-debug/commands/display.rb: remove unused constructor
|
1105
|
+
|
1106
|
+
2006-10-15 16:54 Kent Sibilev
|
1107
|
+
|
1108
|
+
* trunk/ext/ruby_debug.c, ruby-debug.rb,
|
1109
|
+
ruby-debug/commands/threads.rb: new logic of context
|
1110
|
+
suspend/resume
|
1111
|
+
|
1112
|
+
2006-10-15 07:36 Kent Sibilev
|
1113
|
+
|
1114
|
+
* trunk/bin/rdebug, trunk/ext/ruby_debug.c, ruby-debug.rb,
|
1115
|
+
ruby-debug/lock.rb: fixed locking of debugger threads
|
1116
|
+
|
1117
|
+
2006-10-09 22:01 Kent Sibilev
|
1118
|
+
|
1119
|
+
* trunk/ext/ruby_debug.c, trunk/ext/win32/ruby_debug.so,
|
1120
|
+
ruby-debug/interface.rb: fixes for windows version
|
1121
|
+
|
1122
|
+
2006-10-09 19:06 Kent Sibilev
|
1123
|
+
|
1124
|
+
* trunk/CHANGES, trunk/ext/ruby_debug.c, ruby-debug.rb,
|
1125
|
+
ruby-debug/interface.rb: added Debugger.skip and
|
1126
|
+
Debugger.debug_at_exit methods
|
1127
|
+
|
1128
|
+
2006-10-09 16:44 Kent Sibilev
|
1129
|
+
|
1130
|
+
* trunk, trunk/.gdb_history, trunk/CHANGES, trunk/LICENSE,
|
1131
|
+
trunk/README, trunk/Rakefile, trunk/bin, trunk/bin/rdebug,
|
1132
|
+
trunk/doc, trunk/ext, trunk/ext/.gdb_history, trunk/ext/Makefile,
|
1133
|
+
trunk/ext/extconf.rb, trunk/ext/ruby_debug.bundle,
|
1134
|
+
trunk/ext/ruby_debug.c, trunk/ext/win32,
|
1135
|
+
trunk/ext/win32/ruby_debug.so, ., ruby-debug, ruby-debug.rb,
|
1136
|
+
ruby-debug/command.rb, ruby-debug/commands,
|
1137
|
+
ruby-debug/commands/breakpoints.rb,
|
1138
|
+
ruby-debug/commands/catchpoint.rb,
|
1139
|
+
ruby-debug/commands/control.rb, ruby-debug/commands/display.rb,
|
1140
|
+
ruby-debug/commands/eval.rb, ruby-debug/commands/frame.rb,
|
1141
|
+
ruby-debug/commands/help.rb, ruby-debug/commands/list.rb,
|
1142
|
+
ruby-debug/commands/method.rb, ruby-debug/commands/script.rb,
|
1143
|
+
ruby-debug/commands/stepping.rb, ruby-debug/commands/threads.rb,
|
1144
|
+
ruby-debug/commands/tmate.rb, ruby-debug/commands/trace.rb,
|
1145
|
+
ruby-debug/commands/variables.rb, ruby-debug/interface.rb,
|
1146
|
+
ruby-debug/lock.rb, ruby-debug/processor.rb: initial import
|
1147
|
+
|