Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails Heroku - unable to git push heroku master - i18n issue

I am trying to git push heroku master.

It's failing with the following error:

Could not find i18n-0.6.10 in any of the sources
 !
 !     Failed to install gems via Bundler.
 !

 !     Push rejected, failed to compile Ruby app

I have i18n in my gemfile.lock file. Does anyone know what to do? Thank you

like image 330
Mel Avatar asked Feb 12 '23 19:02

Mel


1 Answers

In your gemfile.lock change

i18n (0.6.10)

to

i18n (0.6.9)

As John Beynon mentioned there is no current version of 0.6.10.

like image 97
JisuKim82 Avatar answered May 05 '23 07:05

JisuKim82