OSDN Git Service

Merge branch '201312-usiToCsa'
[shogi-server/shogi-server.git] / mk_game_results
index 6b205a2..0da4ace 100755 (executable)
@@ -58,7 +58,11 @@ require 'getoptlong'
 # @parameter file an absolute path of a csa file
 #
 def grep(file)
-  str = File.open(file).read
+  if RUBY_VERSION >= "1.9.1"
+    str = File.open(file, "r:EUC-JP").read
+  else
+    str = File.open(file, "r").read
+  end
 
   if /^N\+(.*)$/ =~ str then black_name = $1.strip end
   if /^N\-(.*)$/ =~ str then white_name = $1.strip end
@@ -89,6 +93,7 @@ def grep(file)
       puts [time, state, black_mark, black_id, white_id, white_mark, file].join("\t")
     end
   end
+  $stdout.flush
 end
 
 # Show Usage