ruby on rails - Bundler failing to install gems: i18n gem v 0.6.10 issue -
i have run issue when trying push rails 4 app heroku. fails install gems via bundler , says cannot find i18n .6.10
it seems current version of i18n .6.9.
i uninstalled gem i18n , reinstalled. on installation, says installed .9 when bundle show i18n, shows version 10.
i have never seen problem i18n or of gem file.lock gems before. how force use 9?
thank you
0.6.10
was yanked recently. should see gem depends on yanked version of i18n
inspecting gemfile.lock
. also, try specify version of i18n
explicitly in gemfile
:
gem 'i18n', '0.6.9'
and run bundle update
.
Comments
Post a Comment