Method: Inversion::Template::ContainerTag#initialize

Defined in:
lib/inversion/template/containertag.rb

#initialize {|_self| ... } ⇒ Object

Setup subnodes for including classes. :notnew:

Yields:

  • (_self)

Yield Parameters:



10
11
12
13
14
# File 'lib/inversion/template/containertag.rb', line 10

def initialize( * )
	@subnodes = []
	super
	yield( self ) if block_given?
end