Created
January 10, 2012 19:36
-
-
Save jamiejackson/1590705 to your computer and use it in GitHub Desktop.
Install jruby-jack gem from source?
This file contains 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
gem uninstall jruby-rack; # get rid of old jruby-rack gem | |
git clone https://github.com/jruby/jruby-rack.git; # clones into jruby-rack directory | |
cd jruby-rack; # cd into the new directory | |
bundle install; # shouldn't this put the gem into the gemset? | |
rake install_gem; # what's this for? | |
# delete the git source from my rails project | |
cd ../; | |
rm -rf jruby-jack; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment