17 lines
360 B
Ruby
Raw Normal View History

2016-08-18 22:11:42 +03:00
module FileHelper
class << self
def local_binary_path(name)
File.expand_path(File.join(File.dirname(__FILE__), "binaries", name))
end
def local_binary_url(name)
"file://" + local_binary_path(name)
end
def valid_alias?(candidate)
return false unless candidate.symlink?
candidate.readlink.exist?
end
end
end