Class: Execution

Inherits:
Object
  • Object
show all
Defined in:
lib/html_compilation/execution.rb

Instance Method Summary collapse

Instance Method Details

#build(file_prefix = "./data") ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
# File 'lib/html_compilation/execution.rb', line 7

def build(file_prefix = "./data")
  app = Application.new

  setup = Setup.new(file_prefix + "/input")
  setup.main_setup(app, file_prefix)

  conditioning = Conditioning.new
  conditioning.main_condition(app, skip_value = false, ddl = file_prefix)

  out = OutputGeneration.new(app, file_prefix + "/output/files/")
end