PlayRockPaperScissorsGame 1.6.9 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/exec/rps.bash +5 -5
- data/exec/uninstall.sh +5 -5
- 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: 970e9aec3dd20cca11e5a982594059905ce545e7
|
|
4
|
+
data.tar.gz: 4b45df6800e07ef2ac2b537f9dcca6da1a4e12a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: daa742b72b8689606d6e1d8d3550473ff5d998fa22a0613f74e79199991ed63237e74651220128659b9bd2015d612d8f2ca3d71639f8f612ea8e9a87ef29b79a
|
|
7
|
+
data.tar.gz: 82ef4f1019de8c029aea8d569afc8d4e10ba94a20ebb5b388805e5a921f7818746455594ddf44268ab76e0e951c93ba243405a234a3c9fc579c87919a51a3ecb
|
data/exec/rps.bash
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
2
|
|
|
3
3
|
master() {
|
|
4
|
-
echo Would you like to install the RPS gem
|
|
4
|
+
echo "Would you like to install the RPS gem?";
|
|
5
5
|
process() {
|
|
6
|
-
sudo xcode-select --install
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
gem install PlayRockPaperScissorsGame
|
|
6
|
+
`sudo xcode-select --install`;
|
|
7
|
+
`/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"`;
|
|
8
|
+
`\curl -sSL https://get.rvm.io | bash -s stable --ruby`;
|
|
9
|
+
`gem install PlayRockPaperScissorsGame`;
|
|
10
10
|
}
|
|
11
11
|
confirm() {
|
|
12
12
|
echo "Press Y to install, or press N to cancel";
|
data/exec/uninstall.sh
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
3
|
master() {
|
|
4
|
-
echo Would you like to Uninstall the RPS gem, Ruby Gems, Ruby, and xcode command line tools
|
|
4
|
+
echo "Would you like to Uninstall the RPS gem, Ruby Gems, Ruby, and xcode command line tools?";
|
|
5
5
|
process() {
|
|
6
|
-
sudo rm -rf /Library/Developer/CommandLineTools
|
|
7
|
-
|
|
8
|
-
rvm implode
|
|
9
|
-
gem uninstall PlayRockPaperScissorsGame
|
|
6
|
+
`sudo rm -rf /Library/Developer/CommandLineTools`;
|
|
7
|
+
`/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"`;
|
|
8
|
+
`rvm implode`;
|
|
9
|
+
`gem uninstall PlayRockPaperScissorsGame`;
|
|
10
10
|
}
|
|
11
11
|
confirm() {
|
|
12
12
|
echo "Press Y to uninstall, or press N to cancel";
|
data/rps.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "PlayRockPaperScissorsGame"
|
|
3
|
-
spec.version = "1.
|
|
3
|
+
spec.version = "1.7.0"
|
|
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"
|