module Falcon::Environment::Configured

def resolved_configuration_paths

All the falcon application configuration paths, with wildcards expanded.
def resolved_configuration_paths
	if configuration_paths = self.configuration_paths
		configuration_paths.flat_map do |path|
			Dir.glob(path)
		end.uniq
	else
		[]
	end
end