在Heroku上部署应用程序时不应用BUNDLE_WITHOUT

时间:2013-04-25 22:48:44

标签: heroku config

我的目标是在Heroku上为环境“heroku_production”部署一个应用程序。

My Gemfile如下所示:

source 'https://rubygems.org'

gem 'rails', '3.2.9'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

group :development, :test, :production do 
  gem 'sqlite3'
end
# This is needed in case this app is deployed in Heroku - in order to make the Heroku deployment independent from the production environment
group :heroku_production do
  gem 'pg'
end
...

我将BUNDLE_WITHOUT变量设置为“development:test:production”。这是调用heroku config --app my_app时的输出:

=== my_app Config Vars
BUNDLE_WITHOUT:             development:test:production
DATABASE_URL:               postgres://XXXXXXX....
HEROKU_POSTGRESQL_CYAN_URL: postgres://XXXXXXX....
RACK_ENV:                   heroku_production
RAILS_ENV:                  heroku_production

但是,当我将我的东西推送到Heroku时,BUNDLE_WITHOUT var未应用,因为您可以在以下错误消息中看到(第3行: - without development:test):

-----> Ruby/Rails app detected
-----> Installing dependencies using Bundler version 1.3.2
       Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin --deployment
       Fetching gem metadata from https://rubygems.org/.........
       Fetching gem metadata from https://rubygems.org/..
       Using rake (10.0.4)
       ...
       Using pg (0.14.1)
       Installing sqlite3 (1.3.7)
       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 ***

       An error occurred while installing sqlite3 (1.3.7), and Bundler cannot continue.
       Make sure that `gem install sqlite3 -v '1.3.7'` succeeds before bundling.
 !
 !     Failed to install gems via Bundler.
 !
 !     Heroku push rejected, failed to compile Ruby/rails app

To git@heroku.com:my_app.git
 ! [remote rejected] 3dac67374c268d3bf9e051a6db39efc56ae81c76 -> master (pre-receive hook declined)

为什么Heroku这样做?
谷歌搜索也没有帮助。

2 个答案:

答案 0 :(得分:3)

  

请注意 - 目前,Cedar堆栈不支持BUNDLE_WITHOUT。

来自:https://devcenter.heroku.com/articles/bundler#specifying-gems-and-groups

答案 1 :(得分:1)

我最近联系了Heroku关于这个问题,他们说BUNDLE_WITHOUT现在有用了!

以下是我得到的回复:

  

您好,   不推荐使用user_env_compile,但是这个功能只是Ruby buildpack的默认功能 - 所以你可以使用BUNDLE_WITHOUT config var。   我相信你看过这篇文章,但这是正确的吗? https://devcenter.heroku.com/articles/bundler#specifying-gems-and-groups   好像我们需要更新该文档!   最好,   [姓名编辑]

尚未尝试但很快就会尝试。

相关问题