README.md in gv-0.0.3 vs README.md in gv-0.1.0
- old
+ new
@@ -1,5 +1,9 @@
+[![Gem Version](https://badge.fury.io/rb/gv.svg)](https://badge.fury.io/rb/gv)
+[![Yard Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://rubydoc.info/github/furunkel/gv/master/frames)
+[![Build Status](https://travis-ci.org/furunkel/gv.svg?branch=master)](https://travis-ci.org/furunkel/gv)
+
# GV
Ruby bindings for libgvc (Graphviz) using FFI.
## Installation
@@ -23,20 +27,19 @@
### Create new graph:
```ruby
require 'gv'
graph = GV::Graph.open 'g'
-graph.edge 'e', graph.node('A'), graph.node('B', shape: 'polygon')
-
+graph.edge 'e', graph.node('A'), graph.node('B', shape: 'polygon', label: graph.html('<b>bold</b>'))
# render to string
graph.render 'png'
# or to a file
graph.write 'result.png'
```
#### Result
-![resilt](/spec/render.png)
+![Result](https://raw.githubusercontent.com/furunkel/gv/master/spec/render.png)
### Load existing graph from `.dot` file:
```ruby
require 'gv'