我之前从未遇到过这个问题所以我真的不知道从哪里开始寻找答案......尽管谷歌当然是关于这个话题的空路。
当我尝试将我的应用程序推送到heroku时,我收到此消息:
-----> Ruby/Rails app detected
-----> Installing dependencies using Bundler version 1.3.0.pre.5
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 tilt-1.3.5 in any of the sources
!
! Failed to install gems via Bundler.
!
! Heroku push rejected, failed to compile Ruby/rails app
我已经摧毁了我的宝石并开始了很多次,并且在我的Gemfile中需要倾斜,但没有运气,我仍然收到这条消息。
就像我说的那样,我直到昨天才得到这个错误,并认为这是一个可以修复的小错误。似乎情况并非如此,我正在试图弄清楚需要采取哪些措施来解决这个问题。
有什么建议吗?
编辑GEMFILE
source 'https://rubygems.org/'
gem 'rails', '3.2.12'
gem 'thin'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'bootstrap-sass'
gem 'will_paginate'
gem 'bootstrap-will_paginate'
gem 'jquery-rails'
gem 'rails_autolink'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
group :development, :test do
gem 'sqlite3'
end
group :production do
gem 'pg', '0.14.1'
end
答案 0 :(得分:1)
在推送之前运行bundle update
然后git add
应该修复它
答案 1 :(得分:1)
我收到同样的错误。正如iRichLau noted in this comment,锁定到1.3.4或1.3.6有效。
在Gemfile中:
gem 'tilt', '1.3.4' # or '1.3.6' is now out and also works.
然后捆绑:
bundle update tilt
确保提交消息与这个幻想错误的荒谬相称。 ;)
答案 2 :(得分:0)
当我有2个不同版本的brightbox gem时,就发生了这种情况。
较新的brightbox gem需要更新版本的捆绑包。
所以在我的deploy.rb的顶部,我强制使用brightbox gem版本:
gem 'brightbox', '2.3.8'