Stub class to allow graphs to be represented in YAML using the old (version 2.6) format.
# File lib/puppet/simple_graph.rb, line 488 def initialize(vertex, adjacencies) @vertex = vertex @adjacencies = adjacencies end
# File lib/puppet/simple_graph.rb, line 493 def inspect { :@adjacencies => @adjacencies, :@vertex => @vertex.to_s }.inspect end