RockPaperScissors
Settle any argument with an epic Rock Paper Scissors battle. This gem allows you to run a 1 or 2 player rock paper scissors game from your command line.
NEW Rock-paper-scissors-lizard-Spock mode now available too! Test your prowess Sheldon-style. Don't know what I'm talking about? Check out the video...
Installation
Add this line to your application's Gemfile:
gem 'rock_paper_scissors'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rock_paper_scissors
Usage
To play the game, first require it in your Ruby script or jump into IRB or Pry require it there:
require 'rock_paper_scissors'
Then, set a variable equal to a new instance of Game:
game = RockPaperScissors::Game.new
The game will prompt you for play mode (1 for rock-paper-scissors, 2 for rock-paper-scissors-lizard-spock) and number of players (1 or 2).
Finally, start the game with
game.play
(or whichever variable you set in step 2).
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/siakaramalegos/rock_paper_scissors. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
License
The gem is available as open source under the terms of the MIT License.