homebrew-core/Formula/ammonite-repl.rb

21 lines
641 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/0.8.4/2.12-0.8.4", :using => :nounzip
sha256 "55965f2703c14e1be3100f3541c3b8961135e76f7ebd3961437c94e611887612"
bottle :unneeded
depends_on :java => "1.8+"
def install
bin.install Dir["*"].shift => "amm"
end
test do
ENV["_JAVA_OPTIONS"] = "-Duser.home=#{testpath}"
output = shell_output("#{bin}/amm -c 'print(\"hello world!\")'")
assert_equal "hello world!", output.lines.last
end
end