Jasmine doc site
- Fork the repo
- Create your feature branch (
git checkout -b my-new-docs) - Ensure ruby and bundler (
gem install bundler) are installed - Install ruby dependencies (
bundle) - You can install them in the local folder, instead of globally for the system with (
bundle install --path vendor/bundle) - Install pygments (pip install pygments) - would need python and pip (http://pygments.org/)
- Make your modifications
- Docs for new features go in
edge - Docs for existing release version go in that directory
- Modify the .js, .rb, or .py file in the
srcdirectory for the version being updated. - Run
bundle exec rake pagesto rebuild the html pages for edge. If you're editing a different version you can set theJASMINE_VERSIONenvironment variable. - Preview your changes (
jekyll serve --baseurl '') - Commit your changes (git commit -am 'Add some docs')
- Push to the branch (git push origin my-new-docs)
- Create new Pull Request