PlayRockPaperScissorsGame 1.4.6 → 1.4.7
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/README.md +14 -4
- 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: e5d595e45bf15937d4b9119d2af14143eac59e63
|
4
|
+
data.tar.gz: f131bc8174a8e56f4a1678d875d6f276a894f949
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be24adb669eb73b609d06c410e933f73c510c815a68dab5110d93e2f0e70fe24e2034595f53ea24ff9b26505e24b666dacb144f118578dc3169431702a663808
|
7
|
+
data.tar.gz: 7a0e5a290fa5bad1e75ff2c4d0a977285d1bdb0b547480122aa223196895f788dd430c3845268d35ffdcf771705a625caa1886bd4fda47168ac21fb32f5bb99e
|
data/README.md
CHANGED
@@ -1,10 +1,20 @@
|
|
1
1
|
Rock Paper Scissors
|
2
2
|
===================
|
3
3
|
|
4
|
-
|
5
|
-
------------------
|
4
|
+
**Table of Contents**
|
6
5
|
|
7
|
-
|
6
|
+
- [Rock Paper Scissors](#rock-paper-scissors)
|
7
|
+
- [How to Run and Install](#how-to-run-and-install)
|
8
|
+
- [Install and Run on Mac](#install-and-run-on-mac)
|
9
|
+
- [Running](#running)
|
10
|
+
- [Uninstalling](#uninstalling)
|
11
|
+
- [Install and Run on Windows](#install-and-run-on-windows)
|
12
|
+
- [Running](#running-1)
|
13
|
+
|
14
|
+
How to Run and Install
|
15
|
+
----------------------
|
16
|
+
|
17
|
+
### Install and Run on Mac
|
8
18
|
|
9
19
|
1. Run the `rps.bash` file (located in the `exec` folder) with the `Terminal`
|
10
20
|
|
@@ -18,7 +28,7 @@ How to Run/Install
|
|
18
28
|
|
19
29
|
1. Run the `uninstaller.sh` file (located in the `exec` folder) with the `Terminal`
|
20
30
|
|
21
|
-
### Install
|
31
|
+
### Install and Run on Windows
|
22
32
|
|
23
33
|
1. Download and install Ruby for Windows (if not already installed); download [here](https://rubyinstaller.org/downloads/)
|
24
34
|
2. Run the `rps.bat` file (located in the `exec` folder)
|
data/rps.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "PlayRockPaperScissorsGame"
|
3
|
-
spec.version = "1.4.
|
3
|
+
spec.version = "1.4.7"
|
4
4
|
spec.date = "2017-03-30"
|
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"
|