私はHerokuにプッシュしようとしているレール3.1アプリを持っています。私はそれを押しても失敗し続けます。Rails 3.1 Sqlite3のエラーがHerokuにプッシュ
gem 'sqlite3', :group => [:development, :test]
gem 'pg', :group => [:production]
でもバンドルが、私はエラーを取得していますなどのインストールを実行した後:
Installing sqlite3 (1.3.4) with native extensions Unfortunately, a fatal error has occurred. Please report this error to the Bundler issue tracker at https://github.com/carlhuda/bundler/issues so that we can fix it. Thanks!
/usr/local/lib/ruby/1.9.1/rubygems/installer.rb:483:in `rescue in block in build_extensions': ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError)
/usr/local/bin/ruby extconf.rb
checking for sqlite3.h... no
sqlite3.h is missing. Try 'port install sqlite3 +universal'
or 'yum install sqlite3-devel' and check your shared library search path (the
location where your sqlite3 shared library is located).
は、私は次の行を持っている私の宝石のファイルを変更しました。私はgemファイルにsqlite3なしでいくつかのテストを実行しても、それをHerokuにインストールしようとします。助言がありますか?
あなたのGemfileとGemfile.lockをコミットしてherokuにプッシュしたことを確認するだけですか?また、あなたは英雄でどのスタックを使用していますか? –
はい、私はすべてを約束し、それをすべて英雄に押し込んだり、むしろ試してみました。私はCedarを使用しようとしています。これは、Rails 3.1 – NineBlindEyes
に必要なものです。これは、アセットパイプラインを使用する場合にのみ該当し、Rails 3.1は他のスタックでも実行されます。 –