我正在尝试部署到 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 ,并部署了它。