Sha256: b1079074b4d0d813949876533824c0592f8a7c672992512ab748ed5535a8ed7a
Contents?: true
Size: 650 Bytes
Versions: 19
Compression:
Stored size: 650 Bytes
Contents
protected; module Constants NTRY_TO_SYM = { 'p' => :PAPER, 'r' => :ROCK, 's' => :SCISSORS }; VALID_ENTRIES = NTRY_TO_SYM.keys; COMPUTER_CHOICES = NTRY_TO_SYM.values; WINNERS = [ [:SCISSORS, :PAPER], [:PAPER, :ROCK], [:ROCK, :SCISSORS] ]; # format: player choice, computer choice LOSERS = WINNERS.map { |i,j| [j,i] }; # this will take the original WINNERS array and flip the symbols, thus returning a loss for the user/player INIT_STRINGS = [ "You are about to enter a rock-paper-scissors best of 3 match.".green.bold, "Press the return/enter key to continue...".green.bold, "" ]; end;
Version data entries
19 entries across 19 versions & 1 rubygems