rbtrace 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Gemfile.lock +1 -1
  2. data/bin/rbtrace +4 -4
  3. data/rbtrace.gemspec +1 -1
  4. metadata +3 -3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rbtrace (0.3.2)
4
+ rbtrace (0.3.3)
5
5
  ffi (>= 1.0.5)
6
6
  msgpack (>= 0.4.3)
7
7
  trollop (>= 1.16.2)
data/bin/rbtrace CHANGED
@@ -500,7 +500,7 @@ class RBTracer
500
500
  parser = Trollop::Parser.new do
501
501
  version <<-EOS
502
502
  rbtrace: like strace, but for ruby code
503
- version 0.3.2
503
+ version 0.3.3
504
504
  (c) 2011 Aman Gupta (tmm1)
505
505
  http://github.com/tmm1/rbtrace
506
506
  EOS
@@ -604,7 +604,7 @@ EOS
604
604
  end
605
605
 
606
606
  if out = opts[:output]
607
- file = File.open(out, opts[:append] ? 'a+' : 'w')
607
+ output = File.open(out, opts[:append] ? 'a+' : 'w')
608
608
  end
609
609
 
610
610
  slow = nil
@@ -663,8 +663,8 @@ EOS
663
663
  tracer.add(methods)
664
664
  end
665
665
 
666
- if file
667
- tracer.out = file
666
+ if output
667
+ tracer.out = output
668
668
  end
669
669
 
670
670
  tracer.prefix = ' ' * opts[:prefix]
data/rbtrace.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'rbtrace'
3
- s.version = '0.3.2'
3
+ s.version = '0.3.3'
4
4
  s.homepage = 'http://github.com/tmm1/rbtrace'
5
5
 
6
6
  s.authors = 'Aman Gupta'
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbtrace
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 2
10
- version: 0.3.2
9
+ - 3
10
+ version: 0.3.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Aman Gupta