Я только что обновился до Rails 3.1, и первое приложение, которое я пытался развернуть на Heroku, столкнулось с проблемой, связанной с адаптером Postgres.Я могу отправить приложение на heroku, но затем, когда я пытаюсь перенести базу данных, я получаю следующую ошибку:
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)
, когда я пытаюсь предложить ихустановить я получаю:
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
, что уже кажется странным ... так какой же точный драгоценный камень я должен установить, чтобы заставить эту вещь работать, если не то, что они говорят, что я должен установить ??
Когда я пытаюсь установить gem pg, я получаю:
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
...
В настоящее время я использую SQLite3.Любая помощь очень ценится, это сбивает меня с толку.