Method: Chef::RunContext#load

Defined in:
lib/chef/run_context.rb

#load(run_list_expansion) ⇒ Object

Triggers the compile phase of the chef run.

Parameters:

See Also:



257
258
259
260
# File 'lib/chef/run_context.rb', line 257

def load(run_list_expansion)
  @cookbook_compiler = CookbookCompiler.new(self, run_list_expansion, events)
  cookbook_compiler.compile
end