ruby-debug-ide22 0.7.4 → 0.7.5

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.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES +75 -75
  3. data/ChangeLog.archive +1073 -1073
  4. data/ChangeLog.md +594 -594
  5. data/Gemfile +38 -38
  6. data/MIT-LICENSE +24 -24
  7. data/Rakefile +92 -92
  8. data/bin/gdb_wrapper +96 -96
  9. data/bin/rdebug-ide +200 -200
  10. data/ext/mkrf_conf.rb +44 -44
  11. data/lib/ruby-debug-ide/attach/debugger_loader.rb +20 -20
  12. data/lib/ruby-debug-ide/attach/gdb.rb +73 -73
  13. data/lib/ruby-debug-ide/attach/lldb.rb +71 -71
  14. data/lib/ruby-debug-ide/attach/native_debugger.rb +133 -133
  15. data/lib/ruby-debug-ide/attach/process_thread.rb +54 -54
  16. data/lib/ruby-debug-ide/attach/util.rb +114 -114
  17. data/lib/ruby-debug-ide/command.rb +187 -187
  18. data/lib/ruby-debug-ide/commands/breakpoints.rb +128 -128
  19. data/lib/ruby-debug-ide/commands/catchpoint.rb +64 -64
  20. data/lib/ruby-debug-ide/commands/condition.rb +51 -51
  21. data/lib/ruby-debug-ide/commands/control.rb +164 -158
  22. data/lib/ruby-debug-ide/commands/enable.rb +203 -203
  23. data/lib/ruby-debug-ide/commands/eval.rb +64 -64
  24. data/lib/ruby-debug-ide/commands/expression_info.rb +71 -71
  25. data/lib/ruby-debug-ide/commands/file_filtering.rb +106 -106
  26. data/lib/ruby-debug-ide/commands/frame.rb +155 -155
  27. data/lib/ruby-debug-ide/commands/inspect.rb +25 -25
  28. data/lib/ruby-debug-ide/commands/load.rb +17 -17
  29. data/lib/ruby-debug-ide/commands/stepping.rb +108 -108
  30. data/lib/ruby-debug-ide/commands/threads.rb +178 -178
  31. data/lib/ruby-debug-ide/commands/variables.rb +154 -154
  32. data/lib/ruby-debug-ide/event_processor.rb +71 -71
  33. data/lib/ruby-debug-ide/greeter.rb +42 -42
  34. data/lib/ruby-debug-ide/helper.rb +33 -33
  35. data/lib/ruby-debug-ide/ide_processor.rb +155 -155
  36. data/lib/ruby-debug-ide/interface.rb +47 -45
  37. data/lib/ruby-debug-ide/multiprocess/monkey.rb +46 -46
  38. data/lib/ruby-debug-ide/multiprocess/pre_child.rb +58 -58
  39. data/lib/ruby-debug-ide/multiprocess/starter.rb +10 -10
  40. data/lib/ruby-debug-ide/multiprocess/unmonkey.rb +30 -30
  41. data/lib/ruby-debug-ide/multiprocess.rb +22 -22
  42. data/lib/ruby-debug-ide/thread_alias.rb +26 -26
  43. data/lib/ruby-debug-ide/version.rb +3 -3
  44. data/lib/ruby-debug-ide/xml_printer.rb +570 -570
  45. data/lib/ruby-debug-ide.rb +230 -228
  46. data/ruby-debug-ide.gemspec +47 -47
  47. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a9032dbe12f0b188897774dfb3c6728174f6a82c94fb827aaaf4e81e28f8afd9
4
- data.tar.gz: b7a26d6d40e7ddccab07bfb23a208c2ce25f27ba586931766e8b6160cb0f0abc
3
+ metadata.gz: be5c2da3ea4e53b45599120a571f479e64000527a8c43f9e348c5b744db337fe
4
+ data.tar.gz: 5e716678736df84cba40fbf3cdf5ca818e6a6bc5c690ffe0e04debb3d95c1920
5
5
  SHA512:
6
- metadata.gz: b6938863c86d3c191e5ee5d5972aa638a190ae6cd306c507c9f435d8e645f0d928833734e7fa355a570eb95a63c70f812613a7ffbc881be503731e344b20cc28
7
- data.tar.gz: 5e1e5e16e60c14f58e5ee9147a8e861ab799d4e59debe1072289b74eb8840e891f4d6c2affea6e70550bf12ae3d92c6d4c744430a1918f25219453fa6504ebae
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
+