# File languages-statistics.rb, line 115 def fork_is_available? fork_unavailables = ['mingw', 'mswin', 'java'] fork_unavailables.each do |unavailable_keyword| if RUBY_PLATFORM.index(unavailable_keyword) != nil then return false end end return true end