PlayRockPaperScissorsGame 1.6.9 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: be5732bc16f91d2334b19e94654c0a84c822ceed
4
- data.tar.gz: 22ceace0a551d366db5599fba1a772ba3cabdc2a
3
+ metadata.gz: 970e9aec3dd20cca11e5a982594059905ce545e7
4
+ data.tar.gz: 4b45df6800e07ef2ac2b537f9dcca6da1a4e12a2
5
5
  SHA512:
6
- metadata.gz: fdea93b498c61ec64eb919bd42a81885a52e4180250be6f05b556c49e8b920b81741c6e3dd04593d3b2dd1e56d7b1600837fa613103d1e6dba2bd47766ff9958
7
- data.tar.gz: 365ec00e95c3ffe0365805c837d497bb12a5171dec5b3db3dbd642142744a7cba8ca8a12ef881028daaa65d5bbd2dec979a02e6029f37a4b3507236b85e03561
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
- /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;
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
- /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)";
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.6.9"
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"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: PlayRockPaperScissorsGame
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.9
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - bag3318