Sha256: ad99493b644d879418194792a62cb8d2603cd179498fac60f302306b4dceb04d

Contents?: true

Size: 402 Bytes

Versions: 5

Compression:

Stored size: 402 Bytes

Contents

@ECHO OFF

:master

	:confirm
		CHOICE /C YN "Would you like to update RPS?"
		IF "%ERRORLEVEL%" == "1" CALL:process
		IF "%ERRORLEVEL%" == "2" CALL:exiting
	GOTO:EOF

	:process
		START cmd.exe /K gem update PlayRockPaperScissorsGame
		IF %ERRORLEVEL% EQU 9009 (
			ECHO error - cmd.exe file not found in your PATH
		)
	GOTO:EOF

	:exiting
		EXIT
	GOTO:EOF
GOTO:EOF

CALL:master

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
PlayRockPaperScissorsGame-2.9.1 exec/update.bat
PlayRockPaperScissorsGame-2.9.0 exec/update.bat
PlayRockPaperScissorsGame-2.8.9 exec/update.bat
PlayRockPaperScissorsGame-2.8.8 exec/update.bat
PlayRockPaperScissorsGame-2.8.7 exec/update.bat