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 2012/07/05 18:55:32 UTC

[2/2] git commit: Set a default description and group for CompileCoffeeScript

Set a default description and group for CompileCoffeeScript


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

Branch: refs/heads/5.4-js-rewrite
Commit: 8876a2ad23f0b29abc646ac99b17e8404d0268a6
Parents: 95bc7c6
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Fri Jun 29 17:22:20 2012 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Fri Jun 29 17:22:20 2012 -0700

----------------------------------------------------------------------
 tapestry-core/coffeescript.gradle |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/8876a2ad/tapestry-core/coffeescript.gradle
----------------------------------------------------------------------
diff --git a/tapestry-core/coffeescript.gradle b/tapestry-core/coffeescript.gradle
index e3c8dd3..8e758c1 100644
--- a/tapestry-core/coffeescript.gradle
+++ b/tapestry-core/coffeescript.gradle
@@ -9,6 +9,12 @@ buildscript {
 }
 
 class CompileCoffeeScript extends DefaultTask { 
+
+  { 
+    description = "Compiles CoffeeScript sources into JavaScript"
+    group = "build"
+  }
+
   def srcDir = "src/main/coffeescript"
 
   def outputDir = "${project.buildDir}/compiled-coffeescript"
@@ -53,4 +59,4 @@ class CompileCoffeeScript extends DefaultTask {
 
 }
 
-project.ext.CompileCoffeeScript = CompileCoffeeScript
\ No newline at end of file
+project.ext.CompileCoffeeScript = CompileCoffeeScript