GraphElements::Edge
Represent the conneciont edges between vertices
Constructor to Edge
Edge
origin
Vertex relationship origin
Vertex
destiny
Vertex relationship destiny
Returns Vertex's Instance
# File lib/social_framework/graphs/graph_elements.rb, line 111 def initialize origin, destiny @origin = origin @destiny = destiny @labels = Array.new end