Method: ChefApply::Action::Base#initialize

Defined in:
lib/chef_apply/action/base.rb

#initialize(config = {}) ⇒ Base



34
35
36
37
38
39
# File 'lib/chef_apply/action/base.rb', line 34

def initialize(config = {})
  c = config.dup
  @target_host = c.delete :target_host
  # Remaining options are for child classes to make use of.
  @config = c
end