Class: Connect::Includer
- Inherits:
-
Object
- Object
- Connect::Includer
- Defined in:
- lib/connect/includer.rb
Overview
The Includer class implements the functionality to include other connect config files
Constant Summary collapse
- DEFAULT_PATH =
The default path where to find the config files
'/etc/puppet/config/'
- DEFAULT_TYPE =
The default file type
'.config'
Instance Method Summary collapse
-
#first_file? ⇒ Bool
Check if the includer has already included files or not.
-
#include(name, &proc) {|name, content| ... } ⇒ Object
Check the the name of the inclusion and decide what to do.
-
#included?(name) ⇒ Bool
Check if the specfied file is already included or not.
-
#initialize(config_path = DEFAULT_PATH) ⇒ Includer
constructor
A new instance of Includer.
Constructor Details
#initialize(config_path = DEFAULT_PATH) ⇒ Includer
Returns a new instance of Includer.
11 12 13 14 |
# File 'lib/connect/includer.rb', line 11 def initialize(config_path = DEFAULT_PATH) @config_path = Pathname.new(config_path) @included_files = [] end |
Instance Method Details
#first_file? ⇒ Bool
Check if the includer has already included files or not
59 60 61 |
# File 'lib/connect/includer.rb', line 59 def first_file? @include_file == [] end |
#include(name, &proc) {|name, content| ... } ⇒ Object
Check the the name of the inclusion and decide what to do. The result(s) will be yielded to the specfied closure. This routine can handle:
-
absolute file names without wildcards
-
absolute file names with a wildcard
-
relative file names without wildcards
-
relative file names with a wildcard
If a file extention is not givcen, it will use the default_type
33 34 35 36 37 38 39 40 41 |
# File 'lib/connect/includer.rb', line 33 def include(name, &proc) path = Pathname.new(name) path = with_extension(path) if no_extension?(path) path = with_folder(path) unless path.absolute? files = Dir.glob(path).each do |file| include_file(file, &proc) end fail ArgumentError, "No files found for #{name}" if files.empty? end |
#included?(name) ⇒ Bool
Check if the specfied file is already included or not
49 50 51 52 |
# File 'lib/connect/includer.rb', line 49 def included?(name) full_name = Pathname.new(name)..to_s @included_files.include?(full_name) end |