Skip to content

Instantly share code, notes, and snippets.

@phyrog
phyrog / sequel_dot
Last active December 12, 2017 16:57 — forked from ericgj/sequel_dot.rb
ER diagrams with Sequel and Graphviz
#!/usr/bin/env ruby
#
# Usage:
# sequel_dot [SEQUEL-DATABASE-URI] > output.dot
# Or pipe directly to Graphviz:
# sequel_dot [SEQUEL-DATABASE-URI] | dot -Tgif > output.gif
#
# Note adapted from Jeremy Evans' and Rohit Namjoshi's son's code at
# http://sequel.heroku.com/2010/05/29/fun-with-graphviz-and-associations/
#