class Bake::Modernize::License::SkipList

def self.for(root)

Load the skip list from a directory.
def self.for(root)
	full_path = File.join(root, GIT_BLAME_IGNORE_REVS)
	
	if File.exist?(full_path)
		skip_list = self.new
		skip_list.extract(full_path)
		return skip_list
	end
end