homebrew-core/Formula/ammonite-repl.rb
2017-05-30 10:39:40 -07:00

20 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.9.5/2.12-0.9.5", :using => :nounzip
sha256 "354281cd42d05bd17c92352303443603edcb7d5a47201b1875bcd476711228da"
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