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