module Falcon::Command::Paths

def resolved_paths(&block)

@returns [Array(String)]
Resolve a set of `@paths` that may contain wildcards, into a sorted, unique array.
def resolved_paths(&block)
	if @paths
		@paths.collect do |path|
			Dir.glob(path)
		end.flatten.sort.uniq.each(&block)
	end
end