Class: Chef::Cookbook::Chefignore

Inherits:
Object
  • Object
show all
Defined in:
lib/chef/cookbook/chefignore.rb

Constant Summary collapse

COMMENTS_AND_WHITESPACE =
/^\s*(?:#.*)?$/.freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ignore_file_or_repo) ⇒ Chefignore



26
27
28
29
30
31
# File 'lib/chef/cookbook/chefignore.rb', line 26

def initialize(ignore_file_or_repo)
  # Check the 'ignore_file_or_repo' path first and then look in the parent directories till root
  # to handle both the chef repo cookbook layout and a standalone cookbook
  @ignore_file = find_ignore_file(ignore_file_or_repo)
  @ignores = parse_ignore_file
end

Instance Attribute Details

#ignoresObject (readonly)

Returns the value of attribute ignores.



24
25
26
# File 'lib/chef/cookbook/chefignore.rb', line 24

def ignores
  @ignores
end

Instance Method Details

#ignored?(file_name) ⇒ Boolean



43
44
45
# File 'lib/chef/cookbook/chefignore.rb', line 43

def ignored?(file_name)
  @ignores.any? { |glob| File.fnmatch?(glob, file_name) }
end

#remove_ignores_from(file_list) ⇒ Array



35
36
37
38
39
# File 'lib/chef/cookbook/chefignore.rb', line 35

def remove_ignores_from(file_list)
  Array(file_list).inject([]) do |unignored, file|
    ignored?(file) ? unignored : unignored << file
  end
end