I\'m using Postgres.app on OS X (10.8.3). I have modified my PATH
so that the bin
folder for the app is before all others.
Rammy:~
The problem is in the linking of the gem to the Postgres.app. If you link it to the postgres version that ships with osx
Here's a small script:
run the following commands:
gem uninstall pg
PATH=${PATH/'Postgres.app'/'WRONGFOLDER.app'}
gem install pg
PATH=${PATH/'WRONGFOLDER.app'/'Postgres.app'}
Now everthing should be fine