HerokuでのRuby
開発にはpostgresql
を使用する必要がありますが、バンドルインストールを行うと次のメッセージが表示されます。
You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side application.
checking for libpq-fe.h... no Can't find the 'libpq-fe.h header
PostgreSQLサーバーをインストールする必要があります。 https://wiki.postgresql.org/wiki/Apt
そして、pg gemに必要なlibをインストールします。
Sudo apt-get install libpq-dev
その後は動作するはずです。