homebrew-core/Formula/jooby-bootstrap.rb
Sebastian Otaegui 53edf35ff3 New formula: jooby-bootstrap
Closes Homebrew/homebrew#34267.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-12-07 01:12:32 -05:00

18 lines
393 B
Ruby

require "formula"
class JoobyBootstrap < Formula
homepage "https://github.com/jooby-project/jooby-bootstrap"
url "https://github.com/jooby-project/jooby-bootstrap/archive/0.2.2.tar.gz"
sha1 "54802aa2a7bad6a07f25fc4d1dc35767c3525deb"
depends_on :java => "1.8"
depends_on "maven"
def install
bin.install "jooby"
end
test do
system "#{bin}/jooby", "version"
end
end