What is the best practice for automatically-generating ruby documentation as part of a git commit workflow? We'd like to automatically generate new documentation whenever a commit is merged into master.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use Git hooks. If you want it to run on the client side, use a post-commit hook. Essentially, registering a hook (by storing it in Alternatively, you can have it run on the server hosting your Git repo, using a post-receive hook. This will run after you push to the server's repo. For example, you could use this to automatically upload the new docs to For detailed instructions, see the chapter on hooks in the Git manual. |
|||
|
|

