module Graphviz::Diagram

A name space for all types of diagram figures

A name space for all types of diagram figures

A name space for all types of diagram figures

A name space for all types of diagram figures

Constants

VERSION

Public Class Methods

new(type = :class_diagram, opts = {}) click to toggle source
# File lib/graphviz/diagram.rb, line 11
def self.new(type = :class_diagram, opts = {})
  case type.to_sym
  when :class_diagram then ClassDiagram.new opts
  end
end