adding a doc task

This commit is contained in:
Jeremy Ashkenas
2010-10-05 16:57:39 -04:00
parent 3f49d1df30
commit 17e21da715

View File

@@ -8,3 +8,8 @@ task :build do
File.open('underscore-min.js', 'w') {|f| f.write(min) }
end
desc "Build the docco documentation"
task :doc do
sh "docco underscore.js"
end