module Construqt::Networks
Public Class Methods
add(name)
click to toggle source
# File lib/construqt/networks.rb, line 71 def self.add(name) throw "network with name #{name} exists" if @networks[name] @networks[name] = Network.new(name) end