Module: RDF::Raptor::Graphviz

Defined in:
lib/rdf/raptor/graphviz.rb

Overview

Graphviz support.

Examples:

Requiring the RDF::Raptor module

require 'rdf/raptor'

Serializing RDF statements into a Graphviz file

RDF::Writer.open("output.dot") do |writer|
  graph.each_statement do |statement|
    writer << statement
  end
end

Defined Under Namespace

Classes: Format, Writer