Method: Chef::CookbookManifest#root_files

Defined in:
lib/chef/cookbook_manifest.rb

#root_filesObject



209
210
211
212
213
214
# File 'lib/chef/cookbook_manifest.rb', line 209

def root_files
  manifest[:all_files].select do |file|
    segment, name = file[:name].split("/")
    name.nil? || segment == "root_files"
  end
end