From 6119a8d08f98075635aa0cf6c21c1866cd2d75d7 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Tue, 25 Nov 2008 00:06:28 -0500 Subject: [PATCH] Exclude .js files from RDoc --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index a169bae..a0e26d3 100644 --- a/Rakefile +++ b/Rakefile @@ -77,7 +77,7 @@ end desc "Generate RDoc" task :docs do - system "hanna -x Rakefile -x spec --title 'Webrat #{Webrat::VERSION} API Documentation'" + system "hanna -x Rakefile -x spec -x '.js' --title 'Webrat #{Webrat::VERSION} API Documentation'" end desc "Run specs using jruby"