ruby-debug-ide22 0.7.4 → 0.7.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES +75 -75
- data/ChangeLog.archive +1073 -1073
- data/ChangeLog.md +594 -594
- data/Gemfile +38 -38
- data/MIT-LICENSE +24 -24
- data/Rakefile +92 -92
- data/bin/gdb_wrapper +96 -96
- data/bin/rdebug-ide +200 -200
- data/ext/mkrf_conf.rb +44 -44
- data/lib/ruby-debug-ide/attach/debugger_loader.rb +20 -20
- data/lib/ruby-debug-ide/attach/gdb.rb +73 -73
- data/lib/ruby-debug-ide/attach/lldb.rb +71 -71
- data/lib/ruby-debug-ide/attach/native_debugger.rb +133 -133
- data/lib/ruby-debug-ide/attach/process_thread.rb +54 -54
- data/lib/ruby-debug-ide/attach/util.rb +114 -114
- data/lib/ruby-debug-ide/command.rb +187 -187
- data/lib/ruby-debug-ide/commands/breakpoints.rb +128 -128
- data/lib/ruby-debug-ide/commands/catchpoint.rb +64 -64
- data/lib/ruby-debug-ide/commands/condition.rb +51 -51
- data/lib/ruby-debug-ide/commands/control.rb +164 -158
- data/lib/ruby-debug-ide/commands/enable.rb +203 -203
- data/lib/ruby-debug-ide/commands/eval.rb +64 -64
- data/lib/ruby-debug-ide/commands/expression_info.rb +71 -71
- data/lib/ruby-debug-ide/commands/file_filtering.rb +106 -106
- data/lib/ruby-debug-ide/commands/frame.rb +155 -155
- data/lib/ruby-debug-ide/commands/inspect.rb +25 -25
- data/lib/ruby-debug-ide/commands/load.rb +17 -17
- data/lib/ruby-debug-ide/commands/stepping.rb +108 -108
- data/lib/ruby-debug-ide/commands/threads.rb +178 -178
- data/lib/ruby-debug-ide/commands/variables.rb +154 -154
- data/lib/ruby-debug-ide/event_processor.rb +71 -71
- data/lib/ruby-debug-ide/greeter.rb +42 -42
- data/lib/ruby-debug-ide/helper.rb +33 -33
- data/lib/ruby-debug-ide/ide_processor.rb +155 -155
- data/lib/ruby-debug-ide/interface.rb +47 -45
- data/lib/ruby-debug-ide/multiprocess/monkey.rb +46 -46
- data/lib/ruby-debug-ide/multiprocess/pre_child.rb +58 -58
- data/lib/ruby-debug-ide/multiprocess/starter.rb +10 -10
- data/lib/ruby-debug-ide/multiprocess/unmonkey.rb +30 -30
- data/lib/ruby-debug-ide/multiprocess.rb +22 -22
- data/lib/ruby-debug-ide/thread_alias.rb +26 -26
- data/lib/ruby-debug-ide/version.rb +3 -3
- data/lib/ruby-debug-ide/xml_printer.rb +570 -570
- data/lib/ruby-debug-ide.rb +230 -228
- data/ruby-debug-ide.gemspec +47 -47
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be5c2da3ea4e53b45599120a571f479e64000527a8c43f9e348c5b744db337fe
|
4
|
+
data.tar.gz: 5e716678736df84cba40fbf3cdf5ca818e6a6bc5c690ffe0e04debb3d95c1920
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f74d208e01a040294e8d5ff122b947f3e32c9f65407e1327905223cc5158e48a9f1b553920afeabb84bff8f7fdcb7de5b2e8bccef5ae4024cf801f76070925e7
|
7
|
+
data.tar.gz: bacfdd68b97516e4e67f356001c24ebfc735ce0c5a2417fb268f91a45eb603a68ae273ca513f2f7f6842f211ffe7c7ce51d86ea4e04e2ae79a9639544157569b
|
data/CHANGES
CHANGED
@@ -1,75 +1,75 @@
|
|
1
|
-
This document is not maintained since version 0.1.10. See ``Changes'' section
|
2
|
-
in the ``ruby-debug-ide protocol'' document:
|
3
|
-
|
4
|
-
http://debug-commons.rubyforge.org/protocol-spec.html
|
5
|
-
|
6
|
-
and ChangeLog for details. protocol-spec.html is generated from
|
7
|
-
doc/protocol-spec.texi file.
|
8
|
-
|
9
|
-
========================================================================
|
10
|
-
|
11
|
-
0.1.9 - 0.1.10
|
12
|
-
--------------
|
13
|
-
|
14
|
-
* fixed bug when inspected variable's to_s methods returns non-String.
|
15
|
-
Returns diagonstic message now.
|
16
|
-
* do not use '==' from within debugger to prevent runtime error
|
17
|
-
* Workarounding JRuby issue (http://jira.codehaus.org/browse/JRUBY-2063)
|
18
|
-
* switching to ruby-debug-base 0.1.10 (all tests pass)
|
19
|
-
|
20
|
-
0.1.8 - 0.1.9
|
21
|
-
-------------
|
22
|
-
|
23
|
-
* be sure 'exit' is always called.
|
24
|
-
* to_inspect = str.gsub(/\\n/, "\n") in debug_eval() to make possible to
|
25
|
-
evaluate multiline expressions. Frontend must escape new lines
|
26
|
-
accordingly.
|
27
|
-
* prevent exception when to_s returns nil on being evaluated value
|
28
|
-
|
29
|
-
0.1.7 - 0.1.8
|
30
|
-
-------------
|
31
|
-
|
32
|
-
* fixed error during breakpoint removing
|
33
|
-
* (protocols merge) print debug message on $stderr like classic debugger
|
34
|
-
|
35
|
-
0.1.6 - 0.1.7
|
36
|
-
-------------
|
37
|
-
|
38
|
-
* ensure 'yaml' (is_binary_data?) is always loaded in xml_printer.rb
|
39
|
-
* VarInstanceCommand enumerates also variables of an object's class, as it
|
40
|
-
is done in the classic-debugger
|
41
|
-
* do not send unneeded end-of-lines (fast and classic protocol merging)
|
42
|
-
* do not send non-xml PROMPT and CONFIRM + getting rid of 'confirm' methods
|
43
|
-
in the whole codebase (fast and classic protocol merging)
|
44
|
-
* send info <message> when 'delete' is used without given 'pos' (deleting of
|
45
|
-
all breakpoints is not supported)
|
46
|
-
* return <error> on 'delete <negative_int>' (protocol unification)
|
47
|
-
* always use one-based frame numbering (was not the case in <frame[s]>)
|
48
|
-
* send message 'finished' back when exiting
|
49
|
-
|
50
|
-
0.1.5 - 0.1.6
|
51
|
-
-------------
|
52
|
-
|
53
|
-
* do not send binary data within values of variables. See
|
54
|
-
http://www.netbeans.org/nonav/issues/show_bug.cgi?id=101748 for more
|
55
|
-
details
|
56
|
-
|
57
|
-
0.1.4 - 0.1.5
|
58
|
-
-------------
|
59
|
-
|
60
|
-
* fixed subtle bug in xml_printer.rb#print_variable which caused the
|
61
|
-
debugger to die when == method was overridden and did not count on nil
|
62
|
-
parameters
|
63
|
-
* Hash and Array subclasses did not have children thus cannot be expanded in
|
64
|
-
a GUI. E.g. @params in Rails controller (HashWithIndifferentAccess)
|
65
|
-
|
66
|
-
0.1.3 - 0.1.4
|
67
|
-
-------------
|
68
|
-
|
69
|
-
* migration to ruby-debug 0.1.4
|
70
|
-
|
71
|
-
0.1.2 - 0.1.3
|
72
|
-
-------------
|
73
|
-
|
74
|
-
* adding step+ and next+ commands (since ruby-debug 0.9.1)
|
75
|
-
|
1
|
+
This document is not maintained since version 0.1.10. See ``Changes'' section
|
2
|
+
in the ``ruby-debug-ide protocol'' document:
|
3
|
+
|
4
|
+
http://debug-commons.rubyforge.org/protocol-spec.html
|
5
|
+
|
6
|
+
and ChangeLog for details. protocol-spec.html is generated from
|
7
|
+
doc/protocol-spec.texi file.
|
8
|
+
|
9
|
+
========================================================================
|
10
|
+
|
11
|
+
0.1.9 - 0.1.10
|
12
|
+
--------------
|
13
|
+
|
14
|
+
* fixed bug when inspected variable's to_s methods returns non-String.
|
15
|
+
Returns diagonstic message now.
|
16
|
+
* do not use '==' from within debugger to prevent runtime error
|
17
|
+
* Workarounding JRuby issue (http://jira.codehaus.org/browse/JRUBY-2063)
|
18
|
+
* switching to ruby-debug-base 0.1.10 (all tests pass)
|
19
|
+
|
20
|
+
0.1.8 - 0.1.9
|
21
|
+
-------------
|
22
|
+
|
23
|
+
* be sure 'exit' is always called.
|
24
|
+
* to_inspect = str.gsub(/\\n/, "\n") in debug_eval() to make possible to
|
25
|
+
evaluate multiline expressions. Frontend must escape new lines
|
26
|
+
accordingly.
|
27
|
+
* prevent exception when to_s returns nil on being evaluated value
|
28
|
+
|
29
|
+
0.1.7 - 0.1.8
|
30
|
+
-------------
|
31
|
+
|
32
|
+
* fixed error during breakpoint removing
|
33
|
+
* (protocols merge) print debug message on $stderr like classic debugger
|
34
|
+
|
35
|
+
0.1.6 - 0.1.7
|
36
|
+
-------------
|
37
|
+
|
38
|
+
* ensure 'yaml' (is_binary_data?) is always loaded in xml_printer.rb
|
39
|
+
* VarInstanceCommand enumerates also variables of an object's class, as it
|
40
|
+
is done in the classic-debugger
|
41
|
+
* do not send unneeded end-of-lines (fast and classic protocol merging)
|
42
|
+
* do not send non-xml PROMPT and CONFIRM + getting rid of 'confirm' methods
|
43
|
+
in the whole codebase (fast and classic protocol merging)
|
44
|
+
* send info <message> when 'delete' is used without given 'pos' (deleting of
|
45
|
+
all breakpoints is not supported)
|
46
|
+
* return <error> on 'delete <negative_int>' (protocol unification)
|
47
|
+
* always use one-based frame numbering (was not the case in <frame[s]>)
|
48
|
+
* send message 'finished' back when exiting
|
49
|
+
|
50
|
+
0.1.5 - 0.1.6
|
51
|
+
-------------
|
52
|
+
|
53
|
+
* do not send binary data within values of variables. See
|
54
|
+
http://www.netbeans.org/nonav/issues/show_bug.cgi?id=101748 for more
|
55
|
+
details
|
56
|
+
|
57
|
+
0.1.4 - 0.1.5
|
58
|
+
-------------
|
59
|
+
|
60
|
+
* fixed subtle bug in xml_printer.rb#print_variable which caused the
|
61
|
+
debugger to die when == method was overridden and did not count on nil
|
62
|
+
parameters
|
63
|
+
* Hash and Array subclasses did not have children thus cannot be expanded in
|
64
|
+
a GUI. E.g. @params in Rails controller (HashWithIndifferentAccess)
|
65
|
+
|
66
|
+
0.1.3 - 0.1.4
|
67
|
+
-------------
|
68
|
+
|
69
|
+
* migration to ruby-debug 0.1.4
|
70
|
+
|
71
|
+
0.1.2 - 0.1.3
|
72
|
+
-------------
|
73
|
+
|
74
|
+
* adding step+ and next+ commands (since ruby-debug 0.9.1)
|
75
|
+
|