2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-07-04 16:10:24 +01:00
|
|
|
class Cleaner
|
|
|
|
private
|
|
|
|
|
2018-04-07 20:28:56 +01:00
|
|
|
undef executable_path?
|
|
|
|
|
2016-07-04 16:10:24 +01:00
|
|
|
def executable_path?(path)
|
|
|
|
path.mach_o_executable? || path.text_executable?
|
|
|
|
end
|
|
|
|
end
|