Class: Ridley::Chef::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/ridley/chef/config.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, options = {}) ⇒ Config

Create a new Chef Config object.

Parameters:

  • path (#to_s)

    the path to the configuration file

  • options (Hash) (defaults to: {})


12
13
14
15
16
# File 'lib/ridley/chef/config.rb', line 12

def initialize(path, options = {})
  ChefConfig::WorkstationConfigLoader.new(path).load
  ChefConfig::Config.merge!(options)
  ChefConfig::Config.export_proxies # Set proxy settings as environment variables
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args, &block) ⇒ Object

Behave just like ChefConfig::Config in general



39
40
41
# File 'lib/ridley/chef/config.rb', line 39

def method_missing(name, *args, &block)
  ChefConfig::Config.send(name, *args, &block)
end

Class Method Details

.from_file(file) ⇒ Object

Load from a file



34
35
36
# File 'lib/ridley/chef/config.rb', line 34

def self.from_file(file)
  new(file)
end

Instance Method Details

Keep defaults that aren’t in ChefConfig::Config



19
20
21
# File 'lib/ridley/chef/config.rb', line 19

def cookbook_copyright(*args, &block)
  ChefConfig::Config.cookbook_copyright(*args, &block) || 'YOUR_NAME'
end

#cookbook_email(*args, &block) ⇒ Object



22
23
24
# File 'lib/ridley/chef/config.rb', line 22

def cookbook_email(*args, &block)
  ChefConfig::Config.cookbook_email(*args, &block) || 'YOUR_EMAIL'
end

#cookbook_license(*args, &block) ⇒ Object



25
26
27
# File 'lib/ridley/chef/config.rb', line 25

def cookbook_license(*args, &block)
  ChefConfig::Config.cookbook_license(*args, &block) || 'reserved'
end

#respond_to_missing?(name) ⇒ Boolean

Returns:

  • (Boolean)


42
43
44
# File 'lib/ridley/chef/config.rb', line 42

def respond_to_missing?(name)
  ChefConfig::Config.respond_to?(name)
end

#to_hashObject

The configuration as a hash



30
31
32
# File 'lib/ridley/chef/config.rb', line 30

def to_hash
  ChefConfig::Config.save(true)
end