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
- Host: GitHub
- URL: https://github.com/danielberkompas/adventure_console
- Owner: danielberkompas
- Created: 2014-06-06T12:43:31.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-07-03T03:48:49.000Z (almost 12 years ago)
- Last Synced: 2025-01-22T08:38:05.671Z (over 1 year ago)
- Language: Ruby
- Size: 231 KB
- Stars: 0
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.