aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--INSTALL.md15
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