homebrew-core/Formula/jruby.rb
Tzu Dot 200d127dd1 jruby 9.0.1.0
jruby: version bump to 9.0.1.0

Closes Homebrew/homebrew#43629.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-09-06 13:54:21 +01:00

30 lines
910 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.0.1.0/jruby-bin-9.0.1.0.tar.gz"
sha256 "3cab8ead2f080eb9cdf16fc30cbc1974c36a4a4e6c9d321d5a3bbd973b64527f"
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 OS X native libraries
rm_rf Dir["lib/jni/*"] - ["lib/jni/Darwin"]
libexec.install Dir["*"]
bin.install_symlink Dir["#{libexec}/bin/*"]
end
test do
system "#{bin}/jruby", "-e", "puts 'hello'"
end
end