Last active
May 11, 2016 08:09
-
-
Save narze/a40a527de04d5af1c6b16545fc584e80 to your computer and use it in GitHub Desktop.
Fix error libv8 & therubyracer
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
| # Try bundle install first, and wait it fail :/ | |
| gem uninstall libv8 | |
| gem uninstall therubyracer | |
| brew rm v8 | |
| brew tap homebrew/versions | |
| brew install v8-315 | |
| brew link --force v8-315 | |
| gem install libv8 -v '3.16.14.13' -- --with-system-v8 # Replace version number | |
| gem install therubyracer | |
| gem install puma -v '2.11.2' -- --with-cppflags=-I/usr/local/opt/openssl/include # Replace version number |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment