debugger-xml 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/bin/rdebug-vim CHANGED
@@ -15,7 +15,7 @@ class RdebugVim
15
15
  Debugger.tracing = false
16
16
  Debugger.wait_for_start = true
17
17
  Debugger.printer = Printers::Xml.new
18
- Debugger.const_set("PROG_SCRIPT", ARGV.shift)
18
+ Debugger.const_set("PROG_SCRIPT", options.script)
19
19
  end
20
20
 
21
21
  def run
@@ -79,7 +79,7 @@ class RdebugVim
79
79
  opts.on("-I", "--include PATH", String, "Add PATH to $LOAD_PATH") { |path| $LOAD_PATH.unshift(path) }
80
80
  end
81
81
  opts.parse!
82
- opts
82
+ @options.script = ARGV.shift
83
83
  end
84
84
  end
85
85
 
@@ -1,5 +1,5 @@
1
1
  module Debugger
2
2
  module Xml
3
- VERSION = "0.1.3"
3
+ VERSION = "0.1.4"
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.3
4
+ version: 0.1.4
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-04-02 00:00:00.000000000 Z
12
+ date: 2013-05-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: debugger