# $Id: rakefile 5 2008-03-02 04:54:11Z warchild $ task :default => [:test, :docs, :build] task :build do sh %{gem build hawler.gemspec} end task :docs do sh %{find doc -type f -a ! -wholename \*.svn/\* -print |xargs /bin/rm -f} sh %{date -d "Jan 1 1970" > doc/created.rid} sh %{rdoc -o doc -q -f html -m README -W http://spoofed.org/files/hawler/%s -S lib/* README} end task :install do sh %{sudo gem install Hawler.gem} end task :test do ruby "test/ts_all.rb" end