10 lines
143 B
Ruby
Raw Normal View History

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