2

当我尝试对heroku(git push heroku master)进行git push时出现错误。我在雪松堆栈上,我的 Gemfile 指定 sqlite 1.3.5。这是错误:

Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
   /usr/local/bin/ruby extconf.rb
   checking for sqlite3.h... no
   sqlite3.h is missing. Try 'port install sqlite3 +universal'
   or 'yum install sqlite-devel' and check your shared library search path (the
   location where your sqlite3 shared library is located).
   *** 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
   --without-opt-dir
   --with-opt-include
   --without-opt-include=${opt-dir}/include
   --with-opt-lib
   --without-opt-lib=${opt-dir}/lib
   --with-make-prog
   --without-make-prog
   --srcdir=.
   --curdir
   --ruby=/usr/local/bin/ruby
   --with-sqlite3-dir
   --without-sqlite3-dir
   --with-sqlite3-include
   --without-sqlite3-include=${sqlite3-dir}/include
   --with-sqlite3-lib
   --without-sqlite3-lib=${sqlite3-dir}/lib
   --enable-local
   --disable-local
   Gem files will remain installed in /tmp/build_3umr292rjcdek/vendor/bundle/ruby/1.9.1/gems/sqlite3-1.3.5 for inspection.
   Results logged to /tmp/build_3umr292rjcdek/vendor/bundle/ruby/1.9.1/gems/sqlite3-1.3.5/ext/sqlite3/gem_make.out
   An error occured while installing sqlite3 (1.3.5), and Bundler cannot continue.
   Make sure that `gem install sqlite3 -v '1.3.5'` succeeds before bundling.

!!无法通过 Bundler 安装 gem。!!Heroku 推送被拒绝,无法编译 Ruby/rails 应用程序

4

4 回答 4

8

Heroku 告诉您无法sqlite3-ruby在 Heroku 平台上编译 gem。

您可能希望将sqlite3-rubygem 移动到 Heroku 上默认未安装的组中。

gem "rails"

group :development, :test do
  gem "sqlite3-ruby", :require => "sqlite3"
end

group :production do
  gem "pg"
end

更新:看来 gemsqlite3-ruby是旧的,而sqlite3你应该使用新的 gem。

于 2012-04-07T01:33:15.990 回答
5

我遇到的一个导致数小时头痛的问题是“水龙头”宝石。在我将它移到“开发”组之前,它对我造成了几乎完全相同的错误:

group :production do 
  gem 'taps'
  gem 'pg'
end

不确定这是否直接适用于您,但它产生了 sqlite3 错误,直到我将水龙头放入 :production。希望它会帮助某人。

编辑:@cloneofsnake:我没有足够的代表来评论你的答案,但我看到你的 Gemfile 中有“水龙头”宝石。要么摆脱它,要么把它放在 :production 组中;taps 显然对 sqlite3 有一些依赖。我已经为 pg 切换了 sqlite3,但是在我将“水龙头”移到生产环境之前,我遇到了和你一样的错误。

于 2012-04-12T23:36:00.803 回答
4

看看你要推送哪个分支。就我而言,我正在开发分支上工作,并尝试使用:

$ git push heroku master

git 所做的是将我的 master 分支推送到 heroku,但我的 master 分支使用的是 sqlite3,导致了这个奇怪的错误。

尝试做:

$ git push heroku [name_of_your_branch]:master
于 2012-07-05T14:36:48.670 回答
0

确保您在生产中拥有必要的宝石。我最近自己也遇到了这个问题。还可以尝试使用 gem 'pg' (POSTGRESQL) 而不是 sqlite,因为这就是 Heroku 使用的。

例如:

group :production do
  gem 'pg'
  gem 'carrierwave'
  gem 'rmagick'
  gem 'heroku'
  gem 'git-rails'
  gem "jquery-rails"
  gem 'hoe', '~> 1.5.1'
  gem "RedCloth"
  gem 'i18n'
end
于 2012-04-07T01:10:07.583 回答