viking_room7 0.1.0 → 0.1.1
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 +7 -3
- data/lib/viking_room7/version.rb +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: 420695038518f1334a68fd88e8d9f00ff8e78405
|
|
4
|
+
data.tar.gz: 1c94a07b52362ce9d2bb61c81299a0b648ca8f25
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 95cd44cfd319b2b0f2683c0fd1d2735c5a8ea079418fe43f708f8ff3da81078e70dfbf359faba699a4daa0ab76b2f1a887d70ca1d114889576f2efc36fc8ea3d
|
|
7
|
+
data.tar.gz: 12185cabd19ac77780900b559e8f4d26330be5f9ab118379c0091feec50bfa87ace6e3df4c1488410b5c34d61f9a4f403b0a9de49ed430dc426074d2757097d5
|
data/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# VikingRoom7
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Authors: Leo and Dylan
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This gem is a game called Rock, Paper and Scissors.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -22,7 +22,11 @@ Or install it yourself as:
|
|
|
22
22
|
|
|
23
23
|
## Usage
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
To use, install the gem using the instructions above.
|
|
26
|
+
|
|
27
|
+
To play a game, enter an IRB session. In the session, type in "require 'viking_room7'." Instantiate a new object like so: rps = VikingRoom7::RPS.new. The game should start and you will be prompted with entering your name.
|
|
28
|
+
|
|
29
|
+
Cheers!
|
|
26
30
|
|
|
27
31
|
## Development
|
|
28
32
|
|
data/lib/viking_room7/version.rb
CHANGED