Created
November 27, 2013 12:40
-
-
Save qerub/7675016 to your computer and use it in GitHub Desktop.
Augmenting JRuby Complete with Bundler: a full JRuby installation in a single JAR file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -ex | |
version=1.7.8 | |
jar=jruby-complete-$version-with-bundler.jar | |
curl -o $jar http://jruby.org.s3.amazonaws.com/downloads/$version/jruby-complete-$version.jar | |
java -jar $jar -S gem install -i ./bundler-gems bundler --no-rdoc --no-ri | |
jar uf $jar -C bundler-gems . | |
java -jar $jar -S bundle --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Relevant: "Include bundler in JRuby distribution": jruby/jruby#1146