From 62c802a200b64cdb09ef5f5fa9b769924224b853 Mon Sep 17 00:00:00 2001 From: Osamu Takiya Date: Sat, 12 Jun 2021 14:50:00 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20=E5=A4=9A=E3=81=8F?= =?UTF-8?q?=E3=81=AE=E6=A4=9C=E7=B4=A2=E3=82=B9=E3=82=AD=E3=83=83=E3=83=97?= =?UTF-8?q?=E8=AA=9E=E3=82=92=E5=85=A5=E3=82=8C=E3=81=A6=E3=82=AD=E3=83=A3?= =?UTF-8?q?=E3=83=A9=E3=83=94=E3=83=83=E3=82=AF=E3=82=A2=E3=83=83=E3=83=97?= =?UTF-8?q?=E3=81=AE=E7=B2=BE=E5=BA=A6=E3=82=92=E3=82=88=E3=82=8A=E9=AB=98?= =?UTF-8?q?=E3=82=81=E3=81=9F=20(#130)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pickup_character_names.rb | 49 ++++++++++++++++++- 1 file changed, 47 insertions(+), 2 deletions(-) diff --git a/app/lib/suikoden_database/pickup_character_names.rb b/app/lib/suikoden_database/pickup_character_names.rb index 6ad33bc..3dbc473 100644 --- a/app/lib/suikoden_database/pickup_character_names.rb +++ b/app/lib/suikoden_database/pickup_character_names.rb @@ -31,8 +31,53 @@ def skip_word?(word) # check_words の中身を連続で見ていった際に、これらの語の場合はキャラ名サーチをしない # ここでは、「check_wordsに現れている語の中で除外する語」を指定する # そもそも check_words に含まれていない語はここではどうしようもない - def skip_words + def skip_words # rubocop:disable Metrics/MethodLength [ + '者', + 'い', + 'さま', + '子', + 'お', + '題', + '話', + 'だ', + '枚', + 'ます', + 't', + 'なっ', + 'た', + '時', + '元', + '軍', + 'いる', + '話', + 'だ', + '題', + 'する', + '時', + 'なぁ', + 'まし', + 'た', + 'ます', + 'お', + ':/', + 'z', + '63z', + 'さ', + 'せ', + 'たい', + '話', + 'OT', + 'y', + '事', + '軍', + '料', + '理', + '長', + '小', + '人', + '公', + '人公', '様', '票', '/', @@ -74,7 +119,7 @@ def skip_words '幻水', 'バー', 'ッ', - ] + ].uniq end end end