PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Rails 3.1 - Pushing to Heroku - Erros ao instalar o adaptador postgres?


Opção 1:

Adicionar pg para o seu Gemfile mas pule tentando instalá-lo localmente.
$ cat Gemfile
...
group :production do
  # gems specifically for Heroku go here
  gem "pg"
end

# Skip attempting to install the pg gem
$ bundle install --without production

Opção 2 (Debian/Ubuntu):

Adicionar pg para o seu Gemfile mas primeiro instale os pré-requisitos.
$ cat Gemfile
...
group :production do
  # gems specifically for Heroku go here
  gem "pg"
end

# Install the pg gem's dependencies first
$ sudo apt-get install libpq-dev
# Then install the pg gem along with all the other gems
$ bundle install