Merge pull request #560 from dmitryilyin/rdoc

Rdoc Script for fuel
This commit is contained in:
Vladimir Kuklin 2013-10-07 11:51:00 -07:00
commit 86b1d6686b
2 changed files with 37 additions and 0 deletions

1
.gitignore vendored
View File

@ -23,3 +23,4 @@ Vagrantfile
metadata.json
Gemfile.lock
/rdoc

36
utils/jenkins/make_rdoc.sh Executable file
View File

@ -0,0 +1,36 @@
#!/bin/sh
ruby -v | grep -q 'ruby 1.8'
if [ $? -gt 0 ]; then
echo "Error: you are not using ruby 1.8.*!"
exit 1
fi
if [ -z "${WORKSPACE}" ]; then
echo "Error! WORKSPACE is not set!"
exit 1
fi
cd "${WORKSPACE}"
if [ $? -gt 0 ]; then
echo "Error! Can't cd to ${WORKSPACE}"
exit 1
fi
if [ -d 'rdoc' ]; then
rm -rf 'rdoc'
fi
if [ ! -d "deployment/puppet" ]; then
echo "Puppet modules not found! Something is very wrong!."
exit 1
fi
puppet doc --verbose --mode "rdoc" --outputdir 'rdoc' --charset "utf-8" --modulepath='deployment/puppet/' --manifestdir='deployment/puppet/nailgun/examples/'
if [ $? -gt 0 ]; then
echo "Error building RDOC pages!"
exit 1
fi