Method: Covered::Config.path

Defined in:
lib/covered/config.rb

.path(root) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/covered/config.rb', line 16

def self.path(root)
	path = ::File.expand_path(PATH, root)
	
	if ::File.exist?(path)
		return path
	end
end