95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
17 lines
456 B
Ruby
17 lines
456 B
Ruby
class JoobyBootstrap < Formula
|
|
desc "Script to simplify the creation of jooby apps"
|
|
homepage "https://github.com/jooby-project/jooby-bootstrap"
|
|
url "https://github.com/jooby-project/jooby-bootstrap/archive/0.2.2.tar.gz"
|
|
sha256 "ba662dcbe9022205cdb147a1c4e0931191eb902477ca40f3cba0170dfad54fda"
|
|
|
|
depends_on :java => "1.8+"
|
|
depends_on "maven"
|
|
|
|
def install
|
|
bin.install "jooby"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/jooby", "version"
|
|
end
|
|
end
|