Method: Cumuliform::Section#initialize

Defined in:
lib/cumuliform/section.rb

#initialize(name, imports) ⇒ Section

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Section.



6
7
8
9
10
# File 'lib/cumuliform/section.rb', line 6

def initialize(name, imports)
  @name = name
  @imports = imports
  @items = {}
end