# File lib/phusion_passenger/abstract_installer.rb, line 452 def world_executable?(dir) begin stat = File.stat(dir) rescue Errno::EACCESS return false end return stat.mode & 0000001 != 0 end