Method: Arrow::Template::Container#initialize
- Defined in:
- lib/arrow/template/container.rb
#initialize(name, *contents) ⇒ Container
Create a new Arrow::Template::Container object with the given name and contents.
39 40 41 42 43 44 45 46 47 |
# File 'lib/arrow/template/container.rb', line 39 def initialize( name, *contents ) @name = name @contents = contents @sortblock = nil @filters = [] super() end |