Skip to content

Latest commit

 

History

History
33 lines (17 loc) · 1.12 KB

README.md

File metadata and controls

33 lines (17 loc) · 1.12 KB

Goby Build Status

Goby is a Ruby framework for developing text-RPGs. Popular examples of such games are Zork and Colossal Cave Adventure. Our purpose is to provide the engine and underlying logic so the user can focus on the fun part: content creation!

Preset Data

Play our (short) example game:

ruby lib/main.rb

Remove the example game (which leaves only the framework):

bash scripts/clear_preset.sh

Documentation

We use YARD for documentation. In order to see the doc files, first ensure that YARD is installed:

gem install yard

Then run the following command in our project's root directory:

yardoc

The doc files will then be available as HTML files in the doc/ directory.

Contributing

First, ensure that all tests are passing:

rspec

If so, then submit a pull request. Thanks!