homebrew-core/Formula/jruby.rb
Tomasz Pajor b5659c93d9 jruby 9.1.7.0
Closes #8810.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2017-01-13 09:41:35 +01:00

32 lines
960 B
Ruby

class Jruby < Formula
desc "Ruby implementation in pure Java"
homepage "http://www.jruby.org"
url "https://s3.amazonaws.com/jruby.org/downloads/9.1.7.0/jruby-bin-9.1.7.0.tar.gz"
sha256 "95ac7d2316fb7698039267265716dd2159fa5b49f0e0dc6e469c80ad59072926"
bottle :unneeded
depends_on :java => "1.7+"
def install
# Remove Windows files
rm Dir["bin/*.{bat,dll,exe}"]
cd "bin" do
# Prefix a 'j' on some commands to avoid clashing with other rubies
%w[ast rake rdoc ri testrb].each { |f| mv f, "j#{f}" }
# Delete some unnecessary commands
rm "gem" # gem is a wrapper script for jgem
rm "irb" # irb is an identical copy of jirb
end
# Only keep the macOS native libraries
rm_rf Dir["lib/jni/*"] - ["lib/jni/Darwin"]
libexec.install Dir["*"]
bin.install_symlink Dir["#{libexec}/bin/*"]
end
test do
assert_equal "hello\n", shell_output("#{bin}/jruby -e \"puts 'hello'\"")
end
end