-
-
Save antelio/563e54745ed30a3d7d5d72f3e4d4582c to your computer and use it in GitHub Desktop.
Basic setup for a vagrant box with jruby for JRuby on Rails development
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
# vagrant config for jruby rails dev. | |
# prereqs: vagrant + virtualbox installed | |
# ubuntu box | |
vagrant init bento/ubuntu-18.10 | |
# login | |
vagrant ssh | |
# java setup | |
sudo apt-get install default-jdk -y | |
# rvm + jruby | |
gpg --keyserver hkp://pool.sks-keyservers.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB | |
\curl -L https://get.rvm.io | bash -s stable --ruby=jruby --gems=rails,puma |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment