method

edge

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: Dot
edge(name) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/arel/visitors/dot.rb, line 270
        def edge(name)
          edge = Edge.new(name, @node_stack.last)
          @edge_stack.push edge
          @edges << edge
          yield
          @edge_stack.pop
        end
Register or log in to add new notes.