This repo holds the content to the SpacialDB devcenter.spacialdb.com.
We are using Gollum, Gollum-Site and Pygments to generate this site and make it easier for people to contribute. Before contributing do make sure you have Pygments installed:
easy_install Pygments
Treat this documentation like any ruby
code repository. If you have a minor addition or fix, then select the particular file and press the 'Fork and edit file' button in Github. For something entirely new you can:
-
Build a local copy:
git clone git://github.com/spacialdb/spacialdb-devcenter.git cd spacialdb-devcenter gem install bundler bundle install
-
Create a new branch:
git checkout -b <branch-name>
-
Make your changes in Markdown using your favourite editor. To view your edits run the following command and go to localhost:8000:
bundle exec gollum-site --watch --working serve
-
Run the specs and fix any formatting issues:
rake spec
-
Commit, Push and send us a Pull request.