module Falcon::Command::Paths

def configuration

Build a configuration based on the resolved paths.
def configuration
	configuration = Configuration.new
	
	self.resolved_paths.each do |path|
		path = File.expand_path(path)
		
		configuration.load_file(path)
	end
	
	return configuration
end