Ruby script to parse Doxygen XML and render it using HAML
Ruby must be available on the command line.
Currently doxy-haml has only been tested on OSX using Ruby 2.1.0 installed via rbenv: See rbenv readme for details.
The doxygen command must be available on the command line.
Currently doxy-haml has only been tested on OSX using Doxygen 1.8.9.1 installed via brew:
brew update
brew install doxygen
ruby doxy-haml --in /path/to/some/cpp/source --out /path/where/you/want/the/docs
To run doxy-haml against the included spec cpp source:
- Checkout the project
- Change to the project directory
- Install the dependancies
bundle install
(only need to do this once) - Run
ruby doxy-haml.rb --in spec/src
The generated HTML will be in the doc/api
folder