Class: Prick::Build::RootBuildNode

Inherits:
BuildNode show all
Defined in:
lib/builder/node.rb

Instance Attribute Summary collapse

Attributes inherited from BuildNode

#decl_nodes, #init_nodes, #pg_graph_ignore_schema, #refresh_schema, #seed_nodes, #term_nodes

Attributes inherited from Node

#args, #kind, #parent, #path, #phase, #source

Instance Method Summary collapse

Methods inherited from BuildNode

#dump, #inspect, #nodes

Methods inherited from Node

#dump, #inspect, #lines, #name, #prefix_lines, #schema, #schema=, #source_lines, #to_s

Constructor Details

#initialize(conn, path) ⇒ RootBuildNode

Returns a new instance of RootBuildNode.



203
204
205
206
# File 'lib/builder/node.rb', line 203

def initialize(conn, path)
  @conn = conn
  super(nil, path)
end

Instance Attribute Details

#connObject (readonly)

Returns the value of attribute conn.



201
202
203
# File 'lib/builder/node.rb', line 201

def conn
  @conn
end