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