Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/glejeune/Ruby-Graphviz
[MIRROR] Ruby interface to the GraphViz graphing tool
https://github.com/glejeune/Ruby-Graphviz
Last synced: about 1 month ago
JSON representation
[MIRROR] Ruby interface to the GraphViz graphing tool
- Host: GitHub
- URL: https://github.com/glejeune/Ruby-Graphviz
- Owner: glejeune
- License: other
- Created: 2009-08-02T13:01:42.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2024-02-08T07:30:58.000Z (10 months ago)
- Last Synced: 2024-08-24T10:37:29.356Z (4 months ago)
- Language: Ruby
- Homepage: https://gitlab.com/glejeune/ruby-graphviz
- Size: 21.4 MB
- Stars: 608
- Watchers: 24
- Forks: 116
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: COPYING.md
Awesome Lists containing this project
- awesome-ruby - Ruby/GraphViz - Ruby interface to the GraphViz graphing tool. (Data Visualization)
- data-science-with-ruby - ruby-graphviz
README
# Ruby/GraphViz
[![All Contributors](https://img.shields.io/badge/all_contributors-31-orange.svg)](#contributors)
[![Travis CI build](https://secure.travis-ci.org/glejeune/Ruby-Graphviz.svg)](https://travis-ci.org/glejeune/Ruby-Graphviz)
[![Gem Version](https://badge.fury.io/rb/ruby-graphviz.svg)](https://rubygems.org/gems/ruby-graphviz)Copyright (C) 2004-2018 Gregoire Lejeune
* Doc : http://rdoc.info/projects/glejeune/Ruby-Graphviz
* Sources : https://github.com/glejeune/Ruby-Graphviz
* On Rubygems: https://rubygems.org/gems/ruby-graphviz## INSTALLATION
Add this line to your application's Gemfile:
gem 'ruby-graphviz'
And then execute:
$ bundle
Or install it yourself as:
$ gem install ruby-graphviz
## DESCRIPTION
Interface to the GraphViz graphing tool
## TODO
* New FamilyTree
## SYNOPSIS
A basic example
```ruby
require 'ruby-graphviz'# Create a new graph
g = GraphViz.new( :G, :type => :digraph )# Create two nodes
hello = g.add_nodes( "Hello" )
world = g.add_nodes( "World" )# Create an edge between the two nodes
g.add_edges( hello, world )# Generate output image
g.output( :png => "hello_world.png" )
```The same but with a block
```ruby
require 'ruby-graphviz'GraphViz::new( :G, :type => :digraph ) { |g|
g.world( :label => "World" ) << g.hello( :label => "Hello" )
}.output( :png => "hello_world.png" )
```Or with the DSL
```ruby
require 'ruby-graphviz/dsl'
digraph :G do
world[:label => "World"] << hello[:label => "Hello"]output :png => "hello_world.png"
end
```Create a graph from a file
```ruby
require 'ruby-graphviz'# In this example, hello.dot is :
# digraph G {Hello->World;}GraphViz.parse( "hello.dot", :path => "/usr/local/bin" ) { |g|
g.get_node("Hello") { |n|
n[:label] = "Bonjour"
}
g.get_node("World") { |n|
n[:label] = "Le Monde"
}
}.output(:png => "sample.png")
```[GraphML](http://graphml.graphdrawing.org/) support
```ruby
require 'ruby-graphviz/graphml'g = GraphViz::GraphML.new( "graphml/cluster.graphml" )
g.graph.output( :path => "/usr/local/bin", :png => "#{$0}.png" )
```## TOOLS
Ruby/GraphViz also includes :
* `ruby2gv`, a simple tool that allows you to create a dependency graph from a ruby script. Example : http://drp.ly/dShaZ
```ruby
ruby2gv -Tpng -oruby2gv.png ruby2gv
```* `gem2gv`, a tool that allows you to create a dependency graph between gems. Example : http://drp.ly/dSj9Y
```ruby
gem2gv -Tpng -oruby-graphviz.png ruby-graphviz
```* `dot2ruby`, a tool that allows you to create a ruby script from a graphviz script
```ruby
$ cat hello.dot
digraph G {Hello->World;}$ dot2ruby hello.dot
# This code was generated by dot2ruby.grequire 'rubygems'
require 'ruby-graphviz'
graph_g = GraphViz.digraph( "G" ) { |graph_g|
graph_g[:bb] = '0,0,70,108'
node_hello = graph_g.add_nodes( "Hello", :height => '0.5', :label => '\N', :pos => '35,90', :width => '0.88889' )
graph_g.add_edges( "Hello", "World", :pos => 'e,35,36.413 35,71.831 35,64.131 35,54.974 35,46.417' )
node_world = graph_g.add_nodes( "World", :height => '0.5', :label => '\N', :pos => '35,18', :width => '0.97222' )
}
puts graph_g.output( :canon => String )
```* `git2gv`, a tool that allows you to show your git commits
* `xml2gv`, a tool that allows you to show a xml file as graph.
## GRAPH THEORY
```ruby
require 'ruby-graphviz'
require 'ruby-graphviz/theory'g = GraphViz.new( :G ) { ... }
t = GraphViz::Theory.new( g )
puts "Adjancy matrix : "
puts t.adjancy_matrixputs "Symmetric ? #{t.symmetric?}"
puts "Incidence matrix :"
puts t.incidence_matrixg.each_node do |name, node|
puts "Degree of node `#{name}' = #{t.degree(node)}"
endputs "Laplacian matrix :"
puts t.laplacian_matrixputs "Dijkstra between a and f"
r = t.moore_dijkstra(g.a, g.f)
if r.nil?
puts "No way !"
else
print "\tPath : "; p r[:path]
puts "\tDistance : #{r[:distance]}"
endprint "Ranges : "
rr = t.range
p rr
puts "Your graph contains circuits" if rr.include?(nil)puts "Critical path : "
rrr = t.critical_path
print "\tPath "; p rrr[:path]
puts "\tDistance : #{rrr[:distance]}"
```## INSTALLATION
```
sudo gem install ruby-graphviz
```You also need to install [GraphViz](http://www.graphviz.org)
On **Windows** you also need to install win32-open3. This is not an absolute
requirement.## LICENCES
### Ruby/GraphViz
Ruby/GraphViz is freely distributable according to the terms of the GNU
General Public License (see the file 'COPYING').This program is distributed without any warranty. See the file 'COPYING' for
details.GNU General Public Licence: https://en.wikipedia.org/wiki/Gpl
### nothugly.xsl
By Vidar Hokstad and Ryan Shea; Contributions by Jonas Tingborn, Earl
Cummings, Michael Kennedy (Graphviz 2.20.2 compatibility, bug fixes, testing,
lots of gradients)Copyright (c) 2009 Vidar Hokstad
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.MIT license: https://en.wikipedia.org/wiki/MIT_License
## Contributors
Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
Dave Burt
π»
obruening
π»
Chip Malice
π»
Stefan StΓΌben
π»
oupo
π»
Gregoire Lejeune
π» π¨ π
Markus Hauck
π»
Khalil Fazal
π»
Kenichi Kamiya
π»
Neven Has
π»
Andrew
π»
Daniel Zollinger
π»
Guilherme Simoes
π»
Oleg Orlov
π»
Gabe Kopley
π»
Jake Goulding
π»
hirochachacha
π»
ronen barzel
π»
Jamison Dance
π» π
Joseph Anthony Pasquale Holsten
π»
Miguel Cabrera
π»
Mike Fiedler
π»
Nathan Long
π» π
Olle Jonsson
π» π
Postmodern
π»
Robert Reiz
π»
GΓΆran Bodenschatz
π»
SHIBATA Hiroshi
π»
moracca
π»
TPei
π
Villu Orav
π
David RodrΓguez
π» π¦
This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome!