homebrew-core/Formula/ammonite-repl.rb
Igor Kapkov df4fad7df2
ammonite-repl 1.6.5
Closes #38194.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-03-23 18:06:48 +08:00

21 lines
640 B
Ruby

class AmmoniteRepl < Formula
desc "Ammonite is a cleanroom re-implementation of the Scala REPL"
homepage "https://lihaoyi.github.io/Ammonite/#Ammonite-REPL"
url "https://github.com/lihaoyi/Ammonite/releases/download/1.6.5/2.12-1.6.5"
sha256 "06666a1ae95e5b3960130ed0128947f26199184ccba2fef3d62eb69a9e48674e"
bottle :unneeded
depends_on :java => "1.8+"
def install
libexec.install Dir["*"].shift => "amm"
chmod 0555, libexec/"amm"
bin.install_symlink libexec/"amm"
end
test do
output = shell_output("#{bin}/amm -c 'print(\"hello world!\")'")
assert_equal "hello world!", output.lines.last
end
end