8 lines
117 B
Ruby
Raw Normal View History

2016-07-04 16:10:24 +01:00
class Cleaner
private
def executable_path?(path)
path.mach_o_executable? || path.text_executable?
end
end