Add the doc generator

git-svn-id: file:///home/svn/framework3/trunk@6628 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2009-06-06 16:53:35 +00:00
parent b7cac075e0
commit 0bbaeeb2c9
1 changed files with 11 additions and 0 deletions

11
documentation/gendocs.sh Executable file
View File

@ -0,0 +1,11 @@
OPTS="-x .ut.rb -x .ts.rb -q"
BASE="documentation/api"
echo "Generating rex..."
rdoc $OPTS -t "Rex Documentation" -o $BASE/rex lib/rex
echo "Generating msfcore"
rdoc $OPTS -t "Framework Core Documentation" -o $BASE/msfcore lib/msf/core
echo "Generating msfbase"
rdoc $OPTS -t "Framework Base Documentation" -o $BASE/msfbase lib/msf/base
echo "Generating msfui"
rdoc $OPTS -t "Framework UI Documentation" -o $BASE/msfui lib/msf/ui