Heroku error with rake db:pull - !丝锥加载错误:无法加载这样的文件 - sqlite3的
问题描述:
我越来越Heroku error with rake db:pull - !丝锥加载错误:无法加载这样的文件 - sqlite3的
! Taps Load Error: cannot load such file -- sqlite3
即使我有“sqlite3的”安装 我的database.yml设置在各种环境中使用的Postgres
红宝石是1.9.3p125
答
Heroku不支持sqlite3。
所以,你需要改变你的Gemfile是:
group :development, :test do
gem 'sqlite3'
end
group :production do
gem 'pg'
end
,并再次运行bundle install
我在哪里可以找到宝石文件? – 2016-09-27 13:02:23