paper_rock_scissors 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 +6 -21
- data/lib/paper_rock_scissors/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: 589f6c09ad669f7332887abfd2687d64bdd9a6d6
|
4
|
+
data.tar.gz: 71ddbcbe97bd96dafa7efa3af5405cf6e5398ee7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99bccc8830f72d10cd0d1f867156ba6ecb158d01165952036b3ea38567288eb2364c8d552603d562c23c54b57165e2c6a942a8afa03107629feb4240165b37a2
|
7
|
+
data.tar.gz: 89737fe0b486b8d881cc78175fff18874e933dc9b6c3d19dce9d8643cb5657aac26350b9a17111ce6e25b918f296348793f86209f97005678d5d96683d6333da
|
data/README.md
CHANGED
@@ -1,41 +1,26 @@
|
|
1
1
|
# PaperRockScissors
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
Very simple 1 or 2 player Paper, Rock, Scissors game.
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
9
|
-
Add this line to your application's Gemfile:
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
gem 'paper_rock_scissors'
|
13
|
-
```
|
14
|
-
|
15
|
-
And then execute:
|
16
|
-
|
17
|
-
$ bundle
|
18
|
-
|
19
|
-
Or install it yourself as:
|
20
|
-
|
21
7
|
$ gem install paper_rock_scissors
|
22
8
|
|
23
9
|
## Usage
|
24
10
|
|
25
|
-
|
11
|
+
In IRB/PRY:
|
26
12
|
|
27
|
-
|
13
|
+
$ require 'paper_rock_scissors'
|
28
14
|
|
29
|
-
|
15
|
+
And then invoke this module method to start the game.
|
30
16
|
|
31
|
-
|
17
|
+
$ PaperRockScissors.run
|
32
18
|
|
33
19
|
## Contributing
|
34
20
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
21
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/StephenMayeux/paper_rock_scissors.
|
36
22
|
|
37
23
|
|
38
24
|
## License
|
39
25
|
|
40
26
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
-
|