2015-10-24 18:22:53 +00:00
|
|
|
class Gdub < Formula
|
2016-08-23 00:45:56 +00:00
|
|
|
desc "Gradlew/gradle wrapper."
|
2015-10-24 18:22:53 +00:00
|
|
|
homepage "http://www.gdub.rocks"
|
|
|
|
url "https://github.com/dougborg/gdub/archive/v0.1.0.tar.gz"
|
|
|
|
sha256 "ddf2572cc67b8df3293b1707720c6ef09d6caf73227fa869a73b16239df959c3"
|
|
|
|
|
2015-10-27 02:40:54 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2015-10-24 18:22:53 +00:00
|
|
|
def install
|
|
|
|
bin.install "bin/gw"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2016-09-24 22:26:25 +00:00
|
|
|
assert_match "No gradlew set up for this project", pipe_output("#{bin}/gw 2>&1")
|
2015-10-24 18:22:53 +00:00
|
|
|
end
|
|
|
|
end
|