aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornathanbowser2010-02-13 15:14:25 -0500
committerAdam Vandenberg2010-02-13 13:14:05 -0800
commite4b66cec05715ac1f91c719a11252e176c181134 (patch)
treef5ceb7e5610a8efa5e130a0300829db82f198b8d
parentbd1a2774d86557906617c644d13bcf3983bc8654 (diff)
downloadhomebrew-e4b66cec05715ac1f91c719a11252e176c181134.tar.bz2
New formula grails.
Grails is a high-productivity, open-source, web framework based on the Groovy language that embraces the coding by convention paradigm. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/grails.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/grails.rb b/Library/Formula/grails.rb
new file mode 100644
index 000000000..ebd99783f
--- /dev/null
+++ b/Library/Formula/grails.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Grails <Formula
+ url 'http://dist.codehaus.org/grails/grails-1.2.1.zip'
+ homepage 'http://grails.org'
+ version '1.2.1'
+ md5 'd82553956c8249906d247172cfea9e55'
+
+ def install
+ prefix.install Dir['*']
+ FileUtils.rm_f Dir["#{bin}/*.bat"]
+ end
+end