Acabo de actualizar a Rails 3.1 y la primera aplicación que he intentado implementar en Heroku ha encontrado un problema relacionado con el adaptador Postgres. Soy capaz de impulsar la aplicación de heroku pero luego cuando intento de migrar la base de datos me sale el siguiente error:Rails 3.1 - Empujando a Heroku - ¿Errores al instalar el adaptador Postgres?
heroku rake db: migrate
rake aborted!
Please install the postgresql adapter: `gem install activerecord-postgresql-adapter`
(pg is not part of the bundle. Add it to Gemfile.)
Tasks: TOP => db:migrate => db:load_config
(See full trace by running task with --trace)
cuando intento instalar su sugirió que consigo:
ERROR: Could not find a valid gem 'activerecord-postgresql-adapter' (>= 0) in any repository
ERROR: Possible alternatives: activerecord-postgis-adapter, activerecord-jdbcpostgresql-adapter, activerecord-postgresql-cursors, activerecord-jdbcmysql-adapter, activerecord-jdbcmssql-adapter
que ya parece raro ... ¿y qué joya exacta debería instalar para conseguir esta cosa de funcionar si no lo que dicen que debería instalar ??
Cuando intento instalar la gema pg me sale:
Building native extensions. This could take a while...
ERROR: Error installing pg:
ERROR: Failed to build gem native extension.
/Users/jerometufte/.rvm/rubies/ruby-1.9.2-p180/bin/ruby extconf.rb
checking for pg_config... no
No pg_config... trying anyway. If building fails, please try again with
--with-pg-config=/path/to/pg_config
checking for libpq-fe.h... no
Can't find the 'libpq-fe.h header
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers. Check the mkmf.log file for more
details. You may need configuration options.
Provided configuration options:
--with-opt-dir
...
estoy usando actualmente SQLite3. Cualquier ayuda muy apreciada, esto me desconcierta.
Cómo configurar PostgreSQL para rieles y Heroku http: // robdodson .me/blog/2012/04/27/how-to-setup-postgresql-for-rails-and-heroku/ –