A game of rock paper scissors to play against the computer. The app is written with the Model, View, Controller design pattern.
- Ruby
- RSpec and Capybara for testing
- Sinatra for serving the app
# Ensure you have rbenv and ruby installed globally
# Clone the repository
git clone https://github.com/cjmontgom/rock-paper-scissors
# Go inside the directory
cd rock-paper-scissors
# Check your global ruby version
rbenv global
# Change the Ruby version in rock-paper-scissors/.ruby-version, and in your Gemfile, to your global version
# Install dependencies
gem install bundler
bundle install
# Start the development server on port 3000
bundle exec rackup -p 3000
# Go to http://localhost:3000/ in your browser to play