lib/cureutils/logic/janken_logic.rb in cureutils-1.1.0 vs lib/cureutils/logic/janken_logic.rb in cureutils-1.1.1
- old
+ new
@@ -1,7 +1,7 @@
# frozen_string_literal: true
-# coding: utf-8
+
require 'cureutils/logic/base_logic'
#
# Class of Pikarin Janken
#
@@ -13,11 +13,11 @@
# 0: win, 1: lose, 2: aiko
@result_table = [[2, 0, 1, 1],
[1, 2, 0, 1],
[0, 1, 2, 1],
[0, 0, 0, 2]]
- @result_idx = %w(あなたのかち あなたのまけ あいこ)
- @te_idx = %w(グー チョキ パー グッチョッパー)
+ @result_idx = %w[あなたのかち あなたのまけ あいこ]
+ @te_idx = %w[グー チョキ パー グッチョッパー]
@te_hash = Hash[[@te_idx, (0..3).map(&:to_s)].transpose]
@buf = []
end
attr_writer :io