Push to Heroku fails: could not find net-ssh-2.10.0 in any of the sources. Failed to set gems through the bundler

I tried to click my application on the hero, but get the following error:

remote: -----> Using Ruby version: ruby-2.2.2 remote: -----> Installing dependencies using 1.9.7 remote: Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 --deployment remote: Fetching gem metadata from https://rubygems.org/........... remote: Fetching version metadata from https://rubygems.org/... remote: Fetching dependency metadata from https://rubygems.org/.. remote: Could not find net-ssh-2.10.0 in any of the sources remote: Bundler Output: Fetching gem metadata from https://rubygems.org/........... remote: Fetching version metadata from https://rubygems.org/... remote: Fetching dependency metadata from https://rubygems.org/.. remote: Could not find net-ssh-2.10.0 in any of the sources remote: ! Failed to install gems via Bundler. remote: ! Push rejected, failed to compile Ruby app 

What can I do about this?

I deleted Gemfile.lock to see if this file will be rebuilt, but it is not. In addition, I tried gem uninstall net-ssh-2.10.0 and then bundle install before clicking on the hero. In addition, I removed fog from my Gemfile, since the stone that comes with net-ssh-2.10.0 ; then bundle update , gem cleanup , put the fog back into the Gemfile by running bundle install , clicking on git and clicking on the hero with the same result again.

My gemfile:

 source 'https://rubygems.org' ruby '2.2.2' gem 'rails', '4.2.3' gem 'bcrypt', '3.1.10' gem 'faker', '1.4.3' gem 'carrierwave', '0.10.0' gem 'mini_magick', '4.2.9' gem 'fog', '1.32.0' gem 'aws-sdk', '2.1.11' gem 'sass-rails', '5.0.3' gem 'bootstrap-sass', '3.3.5.1' gem 'uglifier', '2.7.1' gem 'coffee-rails', '4.1.0' gem 'wice_grid', '3.5.0' gem 'bootstrap-datepicker-rails', '1.4.0' gem 'friendly_id', '5.1.0' gem 'jquery-rails', '4.0.4' gem 'turbolinks', '2.5.3' gem 'jbuilder', '2.3.1' gem 'sdoc', '0.4.1', group: :doc gem 'pg', '0.18.2' group :production do gem 'rails_12factor', '0.0.3' gem 'puma', '2.11.2' end 
+7
ruby-on-rails ruby-on-rails-4 deployment heroku bundler
source share
2 answers

It seems that this version is just removed from Rubygems ... Can we do a downgrade or an upgrade ...

The reason for the removal is here .

+8
source share

Add to your Gemfile:

 gem 'net-ssh', '!= 2.10.0' 

And run:

 bundle update net-ssh 
+8
source share

All Articles