7

我正在尝试部署到 Heroku(rails 3 应用程序)并不断收到此错误:

 Checking in `vendor/bundle` is not supported. Please remove this directory
       and add it to your .gitignore. To vendor your gems with Bundler, use
       `bundle pack` instead.
-----> 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/..
       Could not find bootstrap-sass-2.3.1.1 in any of the sources
 !
 !     Failed to install gems via Bundler.
 !
 !     Heroku push rejected, failed to compile Ruby/rails app

我查看了许多其他“在任何来源中都找不到 [gem]”的帖子,例如:

Heroku-在任何来源中找不到回形针3.1.3 Heroku:在任何来源中找不到libv8-3.15.11.1 在任何来源中 找不到multi_json-1.7.2

并尝试了他们提出的所有解决方案,我仍然得到这个。

我的宝石文件:

source 'https://rubygems.org'

gem 'rails', '~> 3.2.11'

group :production, :staging do
  gem 'pg'
end
group :development, :test do
  gem 'sqlite3'
  gem "better_errors"
  gem 'rails-footnotes', '>= 3.7.5.rc4'
end

group :assets do
  gem 'therubyracer', :platforms => :ruby
  gem 'uglifier', '>= 1.0.3'
end

gem "less-rails"
gem 'sass-rails', '~> 3.2'
gem "twitter-bootstrap-rails"
gem 'jquery-rails'
gem 'omniauth'
gem 'omniauth-twitter'
gem "paperclip", "~> 3.0"
gem 'thin'
gem 'rails_admin'
gem 'devise'
gem 'binding_of_caller'
gem 'twilio-ruby'
gem 'aws-sdk'
gem 'aws-s3'
gem 'twitter'

提前感谢您提供的任何支持。

还:

我跑了

bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin --deployment

在终端中,因为这就是 Heroku 想要运行的,看看会发生什么。显然,一旦你运行它,它就会保存你设置的所有选项,所以现在当我运行“dundle install”时,它会使用所有这些选项。知道如何回滚到默认选项吗?

编辑

第二部分的答案是 rm -rf .bundle && bundle install

编辑 2

这显然与我的特定 gemfile 有关。我用这个线程中的一个替换了我的gemfile ,并部署了它。

4

3 回答 3

12

这是 bootstrap-sass gem 本身的一个错误。

https://github.com/thomas-mcdonald/bootstrap-sass/commit/abf20dae81b894fc5e03aaa006887265254277d1

我设置了以下内容:

gem "bootstrap-sass", "2.3.1.0"

然后跑

gem uninstall bootstrap-sass
bundle update bootstrap-sass
bundle install

并且能够再次推送到heroku。

于 2013-05-01T18:35:37.117 回答
1

您是否尝试过在 gem 文件中明确要求 bootstrap-sass?

gem "bootstrap-sass", "2.3.1.1"
于 2013-05-01T17:50:10.077 回答
0

我遇到过同样的问题。这是因为 bootstrap-sass gem 在资产组中。

我从资产组中删除了它,它在 Heroku 中运行良好

于 2013-07-24T07:09:04.613 回答