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