rbtrace 0.3.0 → 0.3.1

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.
Files changed (4) hide show
  1. data/Gemfile.lock +1 -1
  2. data/bin/rbtrace +2 -2
  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.2.8)
4
+ rbtrace (0.3.1)
5
5
  ffi (>= 1.0.5)
6
6
  msgpack (>= 0.4.4)
7
7
  trollop (>= 1.16.2)
data/bin/rbtrace CHANGED
@@ -453,7 +453,7 @@ class RBTracer
453
453
 
454
454
  unless tracer == @last_tracer and @last_tracer[:last] == name
455
455
  puts
456
- printf ' '*16 if @show_time
456
+ print ' '*16 if @show_time
457
457
  print @prefix*@nesting if @nesting > 0
458
458
  print name
459
459
  end
@@ -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.0
503
+ version 0.3.1
504
504
  (c) 2011 Aman Gupta (tmm1)
505
505
  http://github.com/tmm1/rbtrace
506
506
  EOS
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.0'
3
+ s.version = '0.3.1'
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: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 0
10
- version: 0.3.0
9
+ - 1
10
+ version: 0.3.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Aman Gupta