rails ruby-on-rails ruby-on-rails-4 heroku deployment bundler

ruby on rails - rails - Error de inserción a Heroku: no se pudo encontrar net-ssh-2.10.0 en ninguna de las fuentes. Error al instalar gemas a través de Bundler



heroku panel (2)

Agrega a tu Gemfile:

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

Y correr:

bundle update net-ssh

Intenté empujar mi aplicación a heroku, pero aparece el siguiente 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

¿Qué puedo hacer sobre esto?

He eliminado Gemfile.lock para ver si la reconstrucción de este archivo haría la diferencia, pero no fue así. Además, he intentado con gem uninstall net-ssh-2.10.0 y luego con bundle install antes de enviar a heroku. Además, eliminé la fog de mi Gemfile ya que esa es la gema con la que net-ssh-2.10.0 ; luego se bundle update , se gem cleanup , se volvió a colocar la fog en el Gemfile, se ejecutó el bundle install , se empujó a git y se volvió a heroku con el mismo resultado.

Mi 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


Parece que esta versión simplemente se ha eliminado de Rubygems ... ¿Tendremos que hacer una degradación o una actualización ...?

La causa de la eliminación está aquí .