Class: RailsGraph::Graph::Relationships::PackModel
- Inherits:
-
RailsGraph::Graph::Relationship
- Object
- Entity
- RailsGraph::Graph::Relationship
- RailsGraph::Graph::Relationships::PackModel
- Defined in:
- lib/rails_graph/graph/relationships/pack_model.rb
Instance Attribute Summary
Attributes inherited from RailsGraph::Graph::Relationship
Attributes inherited from Entity
Instance Method Summary collapse
-
#initialize(source, target) ⇒ PackModel
constructor
A new instance of PackModel.
Methods inherited from RailsGraph::Graph::Relationship
Methods inherited from Entity
Constructor Details
#initialize(source, target) ⇒ PackModel
Returns a new instance of PackModel.
9 10 11 12 13 14 15 16 |
# File 'lib/rails_graph/graph/relationships/pack_model.rb', line 9 def initialize(source, target) super( source: source, target: target, label: "PartOfPack", name: target.name ) end |