9 lines
150 B
Ruby
Raw Normal View History

2016-08-18 22:11:42 +03:00
module FileHelper
module_function
2016-08-18 22:11:42 +03:00
def valid_alias?(candidate)
return false unless candidate.symlink?
candidate.readlink.exist?
2016-08-18 22:11:42 +03:00
end
end