Sha256: 4a3eaeb3f84ec83d4264983014564bd5ffc662555e792551986abbbf6874af8d

Contents?: true

Size: 703 Bytes

Versions: 11

Compression:

Stored size: 703 Bytes

Contents

#!/bin/bash

if [ -z $CVSDIR ]; then
	CVSDIR=$HOME/dev/ruby-feedparser/website
fi

TARGET=$CVSDIR/rdoc

echo "Copying rdoc documentation to $TARGET."

if [ ! -d $TARGET ]; then
	echo "$TARGET doesn't exist, exiting."
	exit 1
fi
rsync -a rdoc/ $TARGET/

echo "###########################################################"
echo "CVS status :"
cd $TARGET
svn st
echo "CVS Adding files."
while [ $(svn st | grep "^? " | wc -l) -gt 0 ]; do
	svn add $(svn st | grep "^? " | awk '{print $2}')
done
echo "###########################################################"
echo "CVS status after adding missing files:"
svn st
echo "Commit changes now with"
echo "# (cd $TARGET && svn commit -m \"rdoc update\")"
exit 0

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
ruby-feedparser-0.11.2 tools/doctoweb.bash
ruby-feedparser-0.11.1 tools/doctoweb.bash
ruby-feedparser-0.11.0 tools/doctoweb.bash
ruby-feedparser-0.10.0 tools/doctoweb.bash
ruby-feedparser-0.9.7 tools/doctoweb.bash
ruby-feedparser-0.9.6 tools/doctoweb.bash
ruby-feedparser-0.9.5 tools/doctoweb.bash
ruby-feedparser-0.9.4 tools/doctoweb.bash
ruby-feedparser-0.9.3 tools/doctoweb.bash
penso-feedparser-0.8 tools/doctoweb.bash
ruby-feedparser-0.7 tools/doctoweb.bash