aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/grails.rb
blob: 833a3080bbd43c47a975474100b4e2cb4fcc874e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Grails <Formula
  url 'http://dist.codehaus.org/grails/grails-1.3.1.zip'
  homepage 'http://grails.org'
  md5 'eae157394eeaa704015756a7613eae50'

  def install
    rm_f Dir["bin/*.bat"]
    prefix.install Dir['*']
  end
end