Command line tools for creating amazing games.
Install from the command line:
$ gem install arcanus
To verify that you have everything installed correctly, you should be able to run the following:
arcanus version
To create your game:
arcanus create awesome_game
To run your game:
cd awesome_game
bundle exec rake start
# Go to http://localhost:4567 in your browser
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request