8 lines
103 B
Ruby
Raw Normal View History

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