Sha256: 56d6a011127695eb6e57293f0fb96564ddbec9ab4b6954935fe77308c4ea09eb
Contents?: true
Size: 689 Bytes
Versions: 4
Compression:
Stored size: 689 Bytes
Contents
private; module PrivateMethods class << self def player_choice loop do print "Choose rock (r), paper (p) or scissors (s): "; choice = gets.chomp.downcase; return Constants::NTRY_TO_SYM[choice] if Constants::NTRY_TO_SYM.key?(choice); puts "That entry is invalid. Please re-enter."; end; end; def player_outcome(plays) return :WIN if Constants::WINNERS.include?(plays); return :LOSE if Constants::LOSERS.include?(plays); return :TIE if !:WIN | !:LOSE; end; def final_outcome(pl, co) return :WIN if pl > co; return :LOSE if pl < co; return :TIE if pl = co; end; end; end;
Version data entries
4 entries across 4 versions & 1 rubygems