diff options
| author | Robert | 2017-10-05 15:53:14 +0200 |
|---|---|---|
| committer | Robert | 2017-10-05 15:53:14 +0200 |
| commit | 5005fd84579355bfb490203926f68275c21a92af (patch) | |
| tree | fe539893b51cf780237badff00b08b0bd897390d | |
| parent | 2424c68ef26f151c89c347b50c5a8d1e296bb1ee (diff) | |
| download | chouette-core-5005fd84579355bfb490203926f68275c21a92af.tar.bz2 | |
Update of INSTALL.md after some troubles getting bundler to install correctly on macOS / Ruby 2.2.*
| -rw-r--r-- | INSTALL.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/INSTALL.md b/INSTALL.md index 899654a25..bd4a3f330 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -21,6 +21,8 @@ Go into your local repro and install the gems ### Installation Caveats +#### Node Related Issue, libv8 + `libv8` might cause you troubles, depending on your local configuration. If you have `libv8` installed (probably because of `node.js`) you might need to tell bundler/Rubygems to use the system version. @@ -34,6 +36,19 @@ or You will get the correct value of `<version>` from bundler's error message. +#### Node Related Issue, therubyracer + +Even after `libv8` installation working, the gem `therubyracer` might not like the `libv8` version chosen. + +In that case however we can let the gem make its own choice: + + gem uninstall libv8 + gem install therubyracer -v '<version>' + +The version to be installed is indicated in the error message bundler gave us in the first place. + +This will install an appropriate `libv8` version and we can continue with `bundle`. + ## Rails ### Dependencies |
