ruby-debug-ide 0.4.17.beta4 → 0.4.17.beta5

Sign up to get free protection for your applications and to get access to all the features.
@@ -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/processor'
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/processor'
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
@@ -15,6 +15,10 @@ module Debugger
15
15
  class Interface
16
16
  end
17
17
 
18
+ class LocalInterface < Interface
19
+ end
20
+
21
+
18
22
  class RemoteInterface < Interface # :nodoc:
19
23
  attr_accessor :command_queue
20
24
 
@@ -1,3 +1,3 @@
1
1
  module Debugger
2
- IDE_VERSION='0.4.17.beta4'
2
+ IDE_VERSION='0.4.17.beta5'
3
3
  end
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: 62196323
4
+ hash: 62196321
5
5
  prerelease: 7
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
9
  - 17
10
10
  - beta
11
- - 4
12
- version: 0.4.17.beta4
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-01 00:00:00 +04:00
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