Files
home/.rbenv/plugins/ruby-build/share/ruby-build/jruby-dev
2025-10-08 10:35:48 +02:00

13 lines
400 B
Plaintext

case $(uname -s) in
Linux)
install_package "jruby-head" "https://github.com/ruby/jruby-dev-builder/releases/latest/download/jruby-head-ubuntu-24.04.tar.gz" jruby
;;
Darwin)
install_package "jruby-head" "https://github.com/ruby/jruby-dev-builder/releases/latest/download/jruby-head-macos-latest.tar.gz" jruby
;;
*)
colorize 1 "Unsupported operating system: $(uname -s)"
return 1
;;
esac