ruby-debug-ide22 0.7.4

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