homebrew-core/Formula/gdub.rb
Miguel Araújo 49f5a8dc72 gdub: update description
Closes Homebrew/homebrew#50461.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2016-03-28 18:23:28 +08:00

23 lines
446 B
Ruby

class Gdub < Formula
desc "A gradlew/gradle wrapper."
homepage "http://www.gdub.rocks"
url "https://github.com/dougborg/gdub/archive/v0.1.0.tar.gz"
sha256 "ddf2572cc67b8df3293b1707720c6ef09d6caf73227fa869a73b16239df959c3"
bottle :unneeded
depends_on "gradle"
def install
bin.install "bin/gw"
end
test do
ENV.java_cache
system "gradle", "init"
cd "gradle" do
system bin/"gw", "tasks"
end
end
end