ruby-debug-ide-docker 0.6.1

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 (49) 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 +28 -0
  6. data/MIT-LICENSE +24 -0
  7. data/Rakefile +42 -0
  8. data/bin/gdb_wrapper +96 -0
  9. data/bin/rdebug-ide +183 -0
  10. data/ext/mkrf_conf.rb +48 -0
  11. data/lib/ruby-debug-ide.rb +173 -0
  12. data/lib/ruby-debug-ide/attach/debugger_loader.rb +20 -0
  13. data/lib/ruby-debug-ide/attach/gdb.rb +73 -0
  14. data/lib/ruby-debug-ide/attach/lldb.rb +71 -0
  15. data/lib/ruby-debug-ide/attach/native_debugger.rb +133 -0
  16. data/lib/ruby-debug-ide/attach/process_thread.rb +54 -0
  17. data/lib/ruby-debug-ide/attach/util.rb +115 -0
  18. data/lib/ruby-debug-ide/command.rb +177 -0
  19. data/lib/ruby-debug-ide/commands/breakpoints.rb +128 -0
  20. data/lib/ruby-debug-ide/commands/catchpoint.rb +64 -0
  21. data/lib/ruby-debug-ide/commands/condition.rb +51 -0
  22. data/lib/ruby-debug-ide/commands/control.rb +158 -0
  23. data/lib/ruby-debug-ide/commands/enable.rb +203 -0
  24. data/lib/ruby-debug-ide/commands/eval.rb +64 -0
  25. data/lib/ruby-debug-ide/commands/expression_info.rb +71 -0
  26. data/lib/ruby-debug-ide/commands/file_filtering.rb +107 -0
  27. data/lib/ruby-debug-ide/commands/frame.rb +155 -0
  28. data/lib/ruby-debug-ide/commands/inspect.rb +25 -0
  29. data/lib/ruby-debug-ide/commands/jump.rb +73 -0
  30. data/lib/ruby-debug-ide/commands/load.rb +18 -0
  31. data/lib/ruby-debug-ide/commands/pause.rb +33 -0
  32. data/lib/ruby-debug-ide/commands/set_type.rb +47 -0
  33. data/lib/ruby-debug-ide/commands/stepping.rb +108 -0
  34. data/lib/ruby-debug-ide/commands/threads.rb +178 -0
  35. data/lib/ruby-debug-ide/commands/variables.rb +154 -0
  36. data/lib/ruby-debug-ide/event_processor.rb +71 -0
  37. data/lib/ruby-debug-ide/greeter.rb +40 -0
  38. data/lib/ruby-debug-ide/helper.rb +33 -0
  39. data/lib/ruby-debug-ide/ide_processor.rb +155 -0
  40. data/lib/ruby-debug-ide/interface.rb +45 -0
  41. data/lib/ruby-debug-ide/multiprocess.rb +23 -0
  42. data/lib/ruby-debug-ide/multiprocess/monkey.rb +47 -0
  43. data/lib/ruby-debug-ide/multiprocess/pre_child.rb +67 -0
  44. data/lib/ruby-debug-ide/multiprocess/starter.rb +11 -0
  45. data/lib/ruby-debug-ide/multiprocess/unmonkey.rb +31 -0
  46. data/lib/ruby-debug-ide/version.rb +3 -0
  47. data/lib/ruby-debug-ide/xml_printer.rb +545 -0
  48. data/ruby-debug-ide-docker.gemspec +51 -0
  49. metadata +110 -0
@@ -0,0 +1,51 @@
1
+ require File.dirname(__FILE__) + '/lib/ruby-debug-ide/version'
2
+ require "date"
3
+
4
+ # ------- Default Package ----------
5
+ RUBY_DEBUG_IDE_VERSION = Debugger::IDE_VERSION unless defined? RUBY_DEBUG_IDE_VERSION
6
+
7
+ unless defined? FILES
8
+ FILES = ['CHANGES',
9
+ 'ChangeLog.md',
10
+ 'ChangeLog.archive',
11
+ 'MIT-LICENSE',
12
+ 'Rakefile',
13
+ 'ext/mkrf_conf.rb',
14
+ 'Gemfile',
15
+ 'ruby-debug-ide-docker.gemspec'
16
+ ]
17
+ FILES.push(*Dir['bin/*'])
18
+ FILES.push(*Dir['lib/**/*'])
19
+ # 'test/**/*',
20
+ end
21
+
22
+ Gem::Specification.new do |spec|
23
+ spec.name = "ruby-debug-ide-docker"
24
+
25
+ spec.homepage = "https://github.com/jasonheecs/ruby-debug-ide"
26
+ spec.summary = "IDE interface for ruby-debug. Fixed subprocess port for use with Docker"
27
+ spec.description = <<-EOF
28
+ An interface which glues ruby-debug to IDEs like Eclipse (RDT), NetBeans and RubyMine.
29
+ EOF
30
+
31
+ spec.version = RUBY_DEBUG_IDE_VERSION
32
+
33
+ spec.author = "Markus Barchfeld, Martin Krauskopf, Mark Moseley, JetBrains RubyMine Team"
34
+ spec.email = "rubymine-feedback@jetbrains.com"
35
+ spec.license = "MIT"
36
+ spec.platform = Gem::Platform::RUBY
37
+ spec.require_path = "lib"
38
+ spec.bindir = "bin"
39
+ spec.executables = ["rdebug-ide", "gdb_wrapper"]
40
+ spec.files = FILES
41
+
42
+ spec.extensions << "ext/mkrf_conf.rb" unless ENV['NO_EXT']
43
+ spec.add_dependency("rake", ">= 0.8.1")
44
+
45
+ spec.required_ruby_version = '>= 1.8.2'
46
+ spec.date = DateTime.now
47
+ spec.rubyforge_project = 'debug-commons'
48
+
49
+ # rdoc
50
+ spec.has_rdoc = false
51
+ end
metadata ADDED
@@ -0,0 +1,110 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby-debug-ide-docker
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.6.1
5
+ platform: ruby
6
+ authors:
7
+ - Markus Barchfeld, Martin Krauskopf, Mark Moseley, JetBrains RubyMine Team
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-12-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.8.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 0.8.1
27
+ description: 'An interface which glues ruby-debug to IDEs like Eclipse (RDT), NetBeans
28
+ and RubyMine.
29
+
30
+ '
31
+ email: rubymine-feedback@jetbrains.com
32
+ executables:
33
+ - rdebug-ide
34
+ - gdb_wrapper
35
+ extensions:
36
+ - ext/mkrf_conf.rb
37
+ extra_rdoc_files: []
38
+ files:
39
+ - CHANGES
40
+ - ChangeLog.archive
41
+ - ChangeLog.md
42
+ - Gemfile
43
+ - MIT-LICENSE
44
+ - Rakefile
45
+ - bin/gdb_wrapper
46
+ - bin/rdebug-ide
47
+ - ext/mkrf_conf.rb
48
+ - lib/ruby-debug-ide.rb
49
+ - lib/ruby-debug-ide/attach/debugger_loader.rb
50
+ - lib/ruby-debug-ide/attach/gdb.rb
51
+ - lib/ruby-debug-ide/attach/lldb.rb
52
+ - lib/ruby-debug-ide/attach/native_debugger.rb
53
+ - lib/ruby-debug-ide/attach/process_thread.rb
54
+ - lib/ruby-debug-ide/attach/util.rb
55
+ - lib/ruby-debug-ide/command.rb
56
+ - lib/ruby-debug-ide/commands/breakpoints.rb
57
+ - lib/ruby-debug-ide/commands/catchpoint.rb
58
+ - lib/ruby-debug-ide/commands/condition.rb
59
+ - lib/ruby-debug-ide/commands/control.rb
60
+ - lib/ruby-debug-ide/commands/enable.rb
61
+ - lib/ruby-debug-ide/commands/eval.rb
62
+ - lib/ruby-debug-ide/commands/expression_info.rb
63
+ - lib/ruby-debug-ide/commands/file_filtering.rb
64
+ - lib/ruby-debug-ide/commands/frame.rb
65
+ - lib/ruby-debug-ide/commands/inspect.rb
66
+ - lib/ruby-debug-ide/commands/jump.rb
67
+ - lib/ruby-debug-ide/commands/load.rb
68
+ - lib/ruby-debug-ide/commands/pause.rb
69
+ - lib/ruby-debug-ide/commands/set_type.rb
70
+ - lib/ruby-debug-ide/commands/stepping.rb
71
+ - lib/ruby-debug-ide/commands/threads.rb
72
+ - lib/ruby-debug-ide/commands/variables.rb
73
+ - lib/ruby-debug-ide/event_processor.rb
74
+ - lib/ruby-debug-ide/greeter.rb
75
+ - lib/ruby-debug-ide/helper.rb
76
+ - lib/ruby-debug-ide/ide_processor.rb
77
+ - lib/ruby-debug-ide/interface.rb
78
+ - lib/ruby-debug-ide/multiprocess.rb
79
+ - lib/ruby-debug-ide/multiprocess/monkey.rb
80
+ - lib/ruby-debug-ide/multiprocess/pre_child.rb
81
+ - lib/ruby-debug-ide/multiprocess/starter.rb
82
+ - lib/ruby-debug-ide/multiprocess/unmonkey.rb
83
+ - lib/ruby-debug-ide/version.rb
84
+ - lib/ruby-debug-ide/xml_printer.rb
85
+ - ruby-debug-ide-docker.gemspec
86
+ homepage: https://github.com/jasonheecs/ruby-debug-ide
87
+ licenses:
88
+ - MIT
89
+ metadata: {}
90
+ post_install_message:
91
+ rdoc_options: []
92
+ require_paths:
93
+ - lib
94
+ required_ruby_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: 1.8.2
99
+ required_rubygems_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ requirements: []
105
+ rubyforge_project: debug-commons
106
+ rubygems_version: 2.7.6
107
+ signing_key:
108
+ specification_version: 4
109
+ summary: IDE interface for ruby-debug. Fixed subprocess port for use with Docker
110
+ test_files: []