blob: 8dbb107c805ef5ef0a8c74acb9e0d786f3512441 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|