An open API service indexing awesome lists of open source software.

https://github.com/danielberkompas/adventure_console

A simple, console-powered adventure game
https://github.com/danielberkompas/adventure_console

Last synced: 12 months ago
JSON representation

A simple, console-powered adventure game

Awesome Lists containing this project

README

          

# Adventure Game
Description here

## How to run the game

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

```bash
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.

```bash
git add .
git commit -am "Your message here"
```

4. Push to github. `git push origin `.
5. Go to the Github page for your fork. There should be a button there offering to open a pull request.