Grails Runtime Docs
Dependency:
compile "org.grails.plugins:grails-runtime-docs:1.0.0"
Summary
Grails Runtime Docs is a Grails Documentation Tool that generates API documentation of the project from runtime including the dynamic methods and properties.
Installation
Declare a dependency on the plugin in your grails-app/conf/BuildConfig.groovy file:
compile ":grails-runtime-docs:1.0.0"
Description
The Runtime Docs plugin generates both Java and Groovy documentation for your Grails Project. The groovy documentation is generated from runtime which facilitates to capture the dynamic methods and properties added to the grails artifacts from various sources. The HTML docs follows Java 7 API documentation template and adds "Dynamic Method Summary & Dynamic Method Detail" providing the source information of the dynamic methods.
The plugin also helps to easily navigate through the grails artifacts by further categorizing the classes into Commands, Configs, Controllers, Domains, Services and Tag Libraries.Java and Groovy documentation is then generated in target/docs directory of your project.
Usage
Generate the documentation for your Grails Project by simply executing the following command:grails runtime-docs