PlayRockPaperScissorsGame 1.7.5 → 1.7.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/exec/run.bat +2 -0
- data/lib/rps/version.rb +1 -1
- data/rps.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 54457c6fb6d9b6b8c756d6a1c8caf6132e21743f
|
4
|
+
data.tar.gz: 6c556b9eed4b4218673991598ec3f6e0e64b8c5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba24a6477a421bb38f1b8fa71b7883264ca638b66a01ce526ee3836fedb6b01e306c9a04a01824f7666dee1050338f0c66388079686858e59bf280559733d07c
|
7
|
+
data.tar.gz: 0a290ca4532480a574695f51d2eab804562775c4a5b7960acf7c1163a46a271fc4326029d96c173a7cb02d958a591fd25bc5f93691627e59f2617a1110758487
|
data/exec/run.bat
CHANGED
@@ -1,11 +1,13 @@
|
|
1
1
|
@ECHO OFF
|
2
2
|
|
3
3
|
:master
|
4
|
+
|
4
5
|
:confirm
|
5
6
|
CHOICE /C YN "Would you like to play Rock Paper Scissors?"
|
6
7
|
if "%ERRORLEVEL%"=="1" CALL:process
|
7
8
|
if "%ERRORLEVEL%"=="2" CALL:exiting
|
8
9
|
GOTO:EOF
|
10
|
+
|
9
11
|
REM start process
|
10
12
|
:process
|
11
13
|
START cmd.exe /K PlayRockPaperScissorsGame
|
data/lib/rps/version.rb
CHANGED
data/rps.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "PlayRockPaperScissorsGame"
|
3
|
-
spec.version = "1.7.
|
3
|
+
spec.version = "1.7.6"
|
4
4
|
spec.date = "2017-04-01"
|
5
5
|
spec.summary = "A Rock Paper Scissors Ruby Gem"
|
6
6
|
spec.description = "A Ruby-programmed rock paper scissors game. To install: gem install PlayRockPaperScissorsGame; To run: rps; or: PlayRockPaperScissorsGame; For issues: https://github.com/bag3318/RockPaperScissors/issues"
|