rpr 1.9.0 → 1.9.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d923de497b9fdd3e34eddd7abee262a84812bd7236e25bb7a5b304e2fdd78a08
4
- data.tar.gz: 3dba086559d87976fc1ebf508efafcb676d997042e964890250cec3ef6990a62
3
+ metadata.gz: 9636e786a9432fd6e76a598299aa881314fe7f16525624a89d7d2d82c62d9137
4
+ data.tar.gz: 1cc3c93f60ccacb09b5ae1e297711ceeff9eb121c22ebccfb26b36cd5ea2d50e
5
5
  SHA512:
6
- metadata.gz: 855dc01da970373f90a5f04345c9a721431c21ae1fbe063be8e5de4e4a0daae43144548208aa349a0b7e200069db88917d60c2871772156688af40a8a25fb94e
7
- data.tar.gz: bd4b639388586ec71556215eaa81a4eda67b4719446983f0610fbf228d6fc7b5fd6ceaca220ff606dd4ec2b26d9906a15576a7d122c486eabbab7e36de60f65e
6
+ metadata.gz: e24b88fa2796a5ae98aaac3c7e89f405c38f9cb8c943de74d426c5e328a31e837c1032fb3bfa11492cfd4e16810c0201111eaa8c7d843ddee393777bbe5ec4e0
7
+ data.tar.gz: 610c98cbc0ada43856836fd87bac2265dabce47dcf93926fa33c8ec24dd61cbf6d5a18f8b3d3b79a4e15ce1689f20d46ca2d52960b2aae201e2b880d249fc9a5
data/README.md CHANGED
@@ -142,7 +142,7 @@ $ rpr hello.rb -f dot | dot -Tpng -oast.png
142
142
  $ open ast.png
143
143
  ```
144
144
 
145
- ![ast](https://user-images.githubusercontent.com/4361134/50540867-63b51300-0bdd-11e9-9b0c-63aa70e980be.png)
145
+ ![ast](https://user-images.githubusercontent.com/4361134/50541128-5fd7bf80-0be2-11e9-81c0-e6f239c4bbd3.png)
146
146
 
147
147
  ### Configuration
148
148
 
@@ -74,7 +74,7 @@ module Rpr
74
74
  shape = object.traversable? ? 'oval' : 'box'
75
75
  id = gen_id()
76
76
 
77
- puts "#{id} -> #{parent}"
77
+ puts "#{parent} -> #{id}"
78
78
  puts "#{id}[ label=#{label.inspect} shape=#{shape} ]"
79
79
 
80
80
  if object.traversable?
@@ -1,3 +1,3 @@
1
1
  module Rpr
2
- VERSION = "1.9.0"
2
+ VERSION = "1.9.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rpr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masataka Kuwabara