module Falcon::Command::Paths

def resolved_paths(&block)

def resolved_paths(&block)
	@paths.collect do |path|
		Dir.glob(path)
	end.flatten.sort.uniq.each(&block)
end