You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2014/08/01 23:45:42 UTC

[2/2] git commit: Update to docco 0.6.3

Update to docco 0.6.3


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/b8391899
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/b8391899
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/b8391899

Branch: refs/heads/master
Commit: b83918998ebda8a30c6c48e7679ba12e0ab80e39
Parents: db4f62a
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Fri Aug 1 14:45:42 2014 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Fri Aug 1 14:45:42 2014 -0700

----------------------------------------------------------------------
 build.gradle | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/b8391899/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index f523c87..7d0b5c5 100755
--- a/build.gradle
+++ b/build.gradle
@@ -365,8 +365,6 @@ task coffeeScriptDocs(type: Exec) {
 
     def outputDir = file("$buildDir/documentation/coffeescript")
 
-    // Note: this currently does not include the results of preprocessing the t5/core/dom.coffee file
-
     def sources = files()
 
     subprojects.each { sub ->
@@ -375,15 +373,10 @@ task coffeeScriptDocs(type: Exec) {
 
     sources += project(":tapestry-core").tasks.preprocessCoffeeScript.outputs.files.asFileTree
 
-    logger.error "sources=$sources"
-
-    // Needs to be installed via "npm install -g docco"
+    // Needs to be installed via "npm install -g docco@0.6.3"
     executable isWindows() ? "docco.cmd" : "docco"
     args "--output", outputDir
     args sources.files.sort({ a, b -> a.name.compareTo b.name })
-
-    inputs.files { sources }
-    outputs.dir outputDir
 }