aboutsummaryrefslogtreecommitdiffstats
path: root/INSTALL.md
diff options
context:
space:
mode:
authorcedricnjanga2017-09-26 00:29:18 +0200
committercedricnjanga2017-09-26 00:29:18 +0200
commitb611a84ed724036c4929bd4c3eaa7e23ea314f45 (patch)
tree957eaecb346a480a6fce3cfbb1d902552edb962f /INSTALL.md
parentf59f05bbf073f90edd2ae0006f028d802b6ed675 (diff)
parent733548a996d5e66c740f59d313eb031ddfcc9116 (diff)
downloadchouette-core-b611a84ed724036c4929bd4c3eaa7e23ea314f45.tar.bz2
Merge branch 'master' into staging
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 330230a40..82f9f5779 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -139,8 +139,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
+```