# File lib/rgl/dot.rb, line 47 47: def dotty (params = {}) 48: dotfile = "graph.dot" 49: File.open(dotfile, "w") {|f| 50: print_dotted_on(params, f) 51: } 52: system("dotty", dotfile) 53: end