/adventure_console

A simple, console-powered adventure game

Primary LanguageRuby

Adventure Game

Description here

How to run the game

From your command line, navigate to the right folder and run ruby game.rb.

cd game/
ruby game.rb

How to Contribute

  1. Fork this repository.
  2. Clone your forked repository down to the computer you intend to use to work on it.
  3. From that computer, make sure you git remote add upstream git@github.com/berkompasacademy/game.git. This will allow you to pull in updates from other people.

Now we get to the fun stuff:

  1. Make a new branch on your local computer.
  2. Make some changes!
  3. Commit your changes.
git add .
git commit -am "Your message here"
  1. Push to github. git push origin <your-branch-name>.
  2. Go to the Github page for your fork. There should be a button there offering to open a pull request.