From 17e21da7156ea61cb31b94ed51b4e18198fcd3c4 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Tue, 5 Oct 2010 16:57:39 -0400 Subject: [PATCH] adding a doc task --- Rakefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Rakefile b/Rakefile index 721c294b3..89e363d6b 100644 --- a/Rakefile +++ b/Rakefile @@ -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 +