Use this cookbook if you plan to deploy a Rails application that uses PostgreSQL.
This library is required for the pg
gem to work whether or not Postgresql is installed.
Note: This cookbook currently supports APT-based distributions (eg. Ubuntu), the Amazon platform, and potentially Mac OS X.
Include this cookbook in your Berksfile
.
cookbook 'libpq-dev', github: 'aerogami-cookbooks/libpq-dev'
Install the cookbook.
berks install
Add to your chef kitchen and use as desired.
Example usage within your cookbook:
include_recipe 'libpq-dev'
This cookbook requires apt
.
Mohamad El-Husseini