PlayRockPaperScissorsGame 1.7.7 → 1.7.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/exec/rps.bash +1 -1
- 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: 87b66f895c28acf10d44f26e0c43059e477fcd66
|
4
|
+
data.tar.gz: 39542b6a792d742d43162e660221538219009143
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 427b88f76cdc0901a43e4fe2753cedaff0a9d232d1abd09b297c4f898542a8f9b3c620a207549da3537fcae3a9cd538535af8bbcd7beb860d6d51574ca9d6bbb
|
7
|
+
data.tar.gz: 8138043b104b8cbfd3cfecf9666b71771dcca17c5b84f0e414b499648bd64e9465ab001dd415a3d18b219136901244897cf3d9b8aabfc313165da2d008a31fa6
|
data/exec/rps.bash
CHANGED
@@ -1,7 +1,7 @@
|
|
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 and what is needed for it?";
|
5
5
|
process() {
|
6
6
|
`sudo xcode-select --install`;
|
7
7
|
`/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"`;
|
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.8"
|
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"
|