Sha256: 4f00bf26a95ddb1fec7135d422b1f2ed36a9b30c39b4f8c01322b444224bac9a
Contents?: true
Size: 828 Bytes
Versions: 3
Compression:
Stored size: 828 Bytes
Contents
require "colorized_string"; ColorizedString.colors ColorizedString.modes module PrivateMethods class << self def player_choice loop do print ColorizedString["Choose rock (r), paper (p) or scissors (s): "].colorize(:green); choice = gets.chomp.downcase; return Constants::NTRY_TO_SYM[choice] if Constants::NTRY_TO_SYM.key?(choice); puts ColorizedString["That entry is invalid. Please re-enter"].colorize(:green); 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
PlayRockPaperScissorsGame-1.7.0 | lib/ref/PrivateMethods.rb |
PlayRockPaperScissorsGame-1.6.9 | lib/ref/PrivateMethods.rb |
PlayRockPaperScissorsGame-1.6.8 | lib/ref/PrivateMethods.rb |