debugger-xml 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,8 +6,6 @@ require 'ostruct'
6
6
  require 'debugger'
7
7
  require 'debugger/xml'
8
8
 
9
- $stdout.sync = true
10
-
11
9
  class RdebugVim
12
10
 
13
11
  def initialize
@@ -7,7 +7,8 @@ module Debugger
7
7
  return if @control_thread
8
8
  daemonize!
9
9
  $stdout.reopen(options.output_file, 'w')
10
- $stderr.reopen(options.output_file, 'w')
10
+ $stdout.sync
11
+ $stderr.reopen($stdout)
11
12
  @mutex = Mutex.new
12
13
  @proceed = ConditionVariable.new
13
14
  start
@@ -1,5 +1,5 @@
1
1
  module Debugger
2
2
  module Xml
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: debugger-xml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-19 00:00:00.000000000 Z
12
+ date: 2013-03-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: debugger