3

通过做这个:

bundle exec heroku db:push

我懂了:

 !    Taps Load Error: no such file to load -- sqlite3
 !    You may need to install or update the taps gem to use db commands.
 !    On most systems this will be:
 !    
 !    sudo gem install taps

这是我的 database.yml 文件:

development:
  adapter: mysql2
  encoding: utf8
  database: g_dev
  pool: 5
  username: root
  password: 
4

2 回答 2

8

我调试了它。

我需要将 gem 'sqlite3' 放入 gemfile 中。

由于 cli.rb (taps-0.3.24) 中的第 10 行:

require 'optparse'
require 'tempfile'
require 'taps/monkey'
require 'taps/config'
require 'taps/log'
require 'vendor/okjson'

Taps::Config.taps_database_url = ENV['TAPS_DATABASE_URL'] || begin
  # this is dirty but it solves a weird problem where the tempfile disappears mid-process
  require 'sqlite3'

它在水龙头源代码中...... :(我别无选择

于 2012-05-24T09:13:19.937 回答
0

我遇到了这个问题,但只需这样做就足够了:

gem install sqlite3

使其在本地可用。也就是说,你不需要用 sqlite 污染你的 gemfile。

(根据您的环境使用 sudo。)

于 2013-09-03T07:03:29.993 回答