2017-11-26 08:25:50 -08:00

8 lines
103 B
Ruby

class Cleaner
private
def executable_path?(path)
path.elf? || path.text_executable?
end
end