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