I had never encountered this problem before, so I really donโt know where to start looking for answers ... even though Google seems to be an empty road regarding this topic.
When I try to click my application on the hero, I get this message:
-----> 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
I destroyed my gemset and started many times, as well as an oblique tilt in my Gemfile, but I'm out of luck, I still get this message.
As I said, until yesterday I did not receive this error and assumed that it was a small error that will be fixed. It seems that this is not the case, and I scratch my head, trying to figure out what needs to be done to fix this problem.
Any suggestions?
EDIT 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
source share