ruby-debug-ide 0.4.17.beta4 → 0.4.17.beta5
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/lib/ruby-debug-ide.rb
CHANGED
@@ -6,12 +6,12 @@ require 'ruby-debug-base'
|
|
6
6
|
if RUBY_VERSION < "1.9"
|
7
7
|
require 'ruby-debug/version'
|
8
8
|
require 'ruby-debug/xml_printer'
|
9
|
-
require 'ruby-debug/
|
9
|
+
require 'ruby-debug/ide_processor'
|
10
10
|
require 'ruby-debug/event_processor'
|
11
11
|
else
|
12
12
|
require_relative 'ruby-debug/version'
|
13
13
|
require_relative 'ruby-debug/xml_printer'
|
14
|
-
require_relative 'ruby-debug/
|
14
|
+
require_relative 'ruby-debug/ide_processor'
|
15
15
|
require_relative 'ruby-debug/event_processor'
|
16
16
|
end
|
17
17
|
|
@@ -110,7 +110,7 @@ module Debugger
|
|
110
110
|
end
|
111
111
|
|
112
112
|
bt = debug_load(Debugger::PROG_SCRIPT, options.stop, options.load_mode)
|
113
|
-
if bt
|
113
|
+
if bt && !bt.is_a?(SystemExit)
|
114
114
|
$stderr.print bt.backtrace.map{|l| "\t#{l}"}.join("\n"), "\n"
|
115
115
|
$stderr.print "Uncaught exception: #{bt}\n"
|
116
116
|
end
|
File without changes
|
data/lib/ruby-debug/interface.rb
CHANGED
data/lib/ruby-debug/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-debug-ide
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 62196321
|
5
5
|
prerelease: 7
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 4
|
9
9
|
- 17
|
10
10
|
- beta
|
11
|
-
-
|
12
|
-
version: 0.4.17.
|
11
|
+
- 5
|
12
|
+
version: 0.4.17.beta5
|
13
13
|
platform: ruby
|
14
14
|
authors:
|
15
15
|
- Markus Barchfeld, Martin Krauskopf, Mark Moseley, JetBrains RubyMine Team
|
@@ -17,7 +17,7 @@ autorequire:
|
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
19
|
|
20
|
-
date: 2011-04-
|
20
|
+
date: 2011-04-27 00:00:00 +04:00
|
21
21
|
default_executable:
|
22
22
|
dependencies:
|
23
23
|
- !ruby/object:Gem::Dependency
|
@@ -68,9 +68,9 @@ files:
|
|
68
68
|
- lib/ruby-debug/commands/variables.rb
|
69
69
|
- lib/ruby-debug/event_processor.rb
|
70
70
|
- lib/ruby-debug/helper.rb
|
71
|
+
- lib/ruby-debug/ide_processor.rb
|
71
72
|
- lib/ruby-debug/interface.rb
|
72
73
|
- lib/ruby-debug/printers.rb
|
73
|
-
- lib/ruby-debug/processor.rb
|
74
74
|
- lib/ruby-debug/version.rb
|
75
75
|
- lib/ruby-debug/xml_printer.rb
|
76
76
|
- lib/ruby-debug-ide.rb
|