add rake task: update_contributors

This commit is contained in:
Scott Taylor 2010-12-27 13:25:06 -05:00
parent 254ccb0813
commit 38b21498e7

View File

@ -59,3 +59,8 @@ task :publish => [ :gemspec, :build ] do
system "git clean -fd"
exec "rake pages"
end
desc "Update contributors"
task :update_contributors do
sh "git-rank-contributors > CONTRIBUTORS"
end