1 2 3 4 5 6 7 8
module FileHelper module_function def valid_alias?(candidate) return false unless candidate.symlink? candidate.readlink.exist? end end