1234567891011121314151617 |
- #!/bin/bash
- fw_depends rvm java
- fw_installed jruby-9.0 && return 0
- # rvm stable [typically] only provides one version of jruby-9.0
- # update this when it changes
- JRUBY_VERSION="9.0.5.0"
- rvm install jruby-$JRUBY_VERSION
- rvm jruby-$JRUBY_VERSION do gem install bundler -v 1.14.3
- echo "export JRUBY_VERSION=${JRUBY_VERSION}" > $IROOT/jruby-9.0.installed
- source $IROOT/jruby-9.0.installed
|