diff options
| author | Luc Donnet | 2017-10-16 23:52:06 +0200 | 
|---|---|---|
| committer | Luc Donnet | 2017-10-16 23:52:06 +0200 | 
| commit | f480ad0739e5c0ec2c0c8bb890344b9c4777ba35 (patch) | |
| tree | a19bc6b43449b8b978a53c33476fb3eb571d4dda /INSTALL.md | |
| parent | b611a84ed724036c4929bd4c3eaa7e23ea314f45 (diff) | |
| parent | 51a1ea5b141032121913f807a162d305828bec54 (diff) | |
| download | chouette-core-f480ad0739e5c0ec2c0c8bb890344b9c4777ba35.tar.bz2 | |
Merge branch 'master' into staging
Diffstat (limited to 'INSTALL.md')
| -rw-r--r-- | INSTALL.md | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/INSTALL.md b/INSTALL.md index 82f9f5779..45eb030ff 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. @@ -33,6 +35,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 | 
