blob: 3ef628ef9cce4d4c436d9a09fb4bbd7aaea96dc1 [file] [log] [blame]
Adam Israeldcdf82b2017-08-15 15:26:43 -04001#!/bin/bash
2packages=(
3 juju.action
4 juju.annotation
5 juju.application
6 juju.cloud
7 juju.constraints
8 juju.controller
9 juju.delta
10 juju.errors
11 juju.exceptions
12 juju.juju
13 juju.loop
14 juju.machine
15 juju.model
16 juju.placement
17 juju.relation
18 juju.tag
19 juju.unit
20 juju.utils
21)
22
23for pkg in ${packages[@]}; do
24 cat <<EOD > docs/api/$pkg.rst
25$pkg
26$(echo $pkg | sed -e 's/./=/g')
27
28.. rubric:: Summary
29
30.. automembersummary:: $pkg
31
32.. rubric:: Reference
33
34.. automodule:: $pkg
35 :members:
36 :undoc-members:
37 :show-inheritance:
38EOD
39done