aboutsummaryrefslogtreecommitdiffstats
path: root/INSTALL.md
diff options
context:
space:
mode:
authorRobert2017-09-25 16:02:37 +0200
committerRobert2017-09-25 16:02:37 +0200
commitff4d67cee911e6e1bc8fed78d0ffef3adf97fddc (patch)
tree842e7b52475333bbe3b6899e472161e4666165b5 /INSTALL.md
parent2fa5b41379f33b399121dca1149dd7b20cf6d00d (diff)
downloadchouette-core-ff4d67cee911e6e1bc8fed78d0ffef3adf97fddc.tar.bz2
Update of INSTALL.md -> Troubleshooting -> macOS -> Nokogiri
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/INSTALL.md b/INSTALL.md
index ea6fbd6ab..899654a25 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -128,8 +128,22 @@ To create `Referential` objects with some data (`Route`, `JourneyPattern`, `Vehi
# Troubleshooting
+## Postgres
+
If Postgres complains about illegal type `hstore` in your tests that is probably because the shared extension is not installed, here is what to do:
bundle exec rake db:test:purge
Thanks to `lib/tasks/extensions.rake`.
+
+## macOS
+
+### Nokogiri
+
+http://www.nokogiri.org/tutorials/installing_nokogiri.html tells us that `xz` can cause troubles, here is what to do
+
+```
+brew unlink xz
+gem install nokogiri # or bundle install
+brew link xz
+```