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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bdf5e65319e8e108063597140a15c01b5be1a43a
4
- data.tar.gz: ae00b4440172ac96a7c8fae7fbcac310b9ef286c
3
+ metadata.gz: 589f6c09ad669f7332887abfd2687d64bdd9a6d6
4
+ data.tar.gz: 71ddbcbe97bd96dafa7efa3af5405cf6e5398ee7
5
5
  SHA512:
6
- metadata.gz: 0600d7706d102260ee27dd2d6ac4f37774d3d356580985b1495ddd187345a7f087ee11c90cb272c7a06186734f015dd76ee66a35fca91227438b7cc573b1a6e5
7
- data.tar.gz: f825f285e64cc263cacd4213e773d8967a90ebd0ce040e9844693f177bc67ce7457675c52d084fa23f09dea22902e14dc00236c89d1caf2cbbdce432411f5e6d
6
+ metadata.gz: 99bccc8830f72d10cd0d1f867156ba6ecb158d01165952036b3ea38567288eb2364c8d552603d562c23c54b57165e2c6a942a8afa03107629feb4240165b37a2
7
+ data.tar.gz: 89737fe0b486b8d881cc78175fff18874e933dc9b6c3d19dce9d8643cb5657aac26350b9a17111ce6e25b918f296348793f86209f97005678d5d96683d6333da
data/README.md CHANGED
@@ -1,41 +1,26 @@
1
1
  # PaperRockScissors
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/paper_rock_scissors`. To experiment with that code, run `bin/console` for an interactive prompt.
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
- TODO: Write usage instructions here
11
+ In IRB/PRY:
26
12
 
27
- ## Development
13
+ $ require 'paper_rock_scissors'
28
14
 
29
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
15
+ And then invoke this module method to start the game.
30
16
 
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
17
+ $ PaperRockScissors.run
32
18
 
33
19
  ## Contributing
34
20
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/paper_rock_scissors.
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
-
@@ -1,3 +1,3 @@
1
1
  module PaperRockScissors
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paper_rock_scissors
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Mayeux