Module: ChefWorkflow::ConfigureHelper

Included in:
Rake::DSL
Defined in:
lib/chef-workflow.rb

Overview

Basic helpers (intended to be mixed in elsewhere) to configure the various support configuration systems.

Instance Method Summary collapse

Instance Method Details

#configure_ec2(&block) ⇒ Object

Configure ‘EC2Support’



52
53
54
# File 'lib/chef-workflow.rb', line 52

def configure_ec2(&block)
  ChefWorkflow::EC2Support.configure(&block)
end

#configure_general(&block) ⇒ Object

Configure ‘GeneralSupport’



24
25
26
# File 'lib/chef-workflow.rb', line 24

def configure_general(&block)
  ChefWorkflow::GeneralSupport.configure(&block)
end

#configure_ips(&block) ⇒ Object

Configure ‘IPSupport’ - you probably don’t need to do this.



45
46
47
# File 'lib/chef-workflow.rb', line 45

def configure_ips(&block)
  ChefWorkflow::IPSupport.configure(&block)
end

#configure_knife(&block) ⇒ Object

Configure ‘KnifeSupport’



31
32
33
# File 'lib/chef-workflow.rb', line 31

def configure_knife(&block)
  ChefWorkflow::KnifeSupport.configure(&block)
end

#configure_vagrant(&block) ⇒ Object

Configure ‘VagrantSupport’



38
39
40
# File 'lib/chef-workflow.rb', line 38

def configure_vagrant(&block)
  ChefWorkflow::VagrantSupport.configure(&block)
end