class Biosphere::TerraformGraph::Edge
Attributes
dst[RW]
length[RW]
src[RW]
Public Class Methods
new(src, dst, length = 1)
click to toggle source
# File lib/biosphere/cli/terraformplanning.rb, line 14 def initialize(src, dst, length = 1) @src = src @dst = dst @length = length end