Passenger says Bundler: GemNotFound error, while package installation says it

I get a passenger error on a shared hosting

Could not find i18n-0.6.0 in any of the sources (Bundler::GemNotFound) 

but if I run "bundle install", it says that everything is fine :(

and the contents of the gemfile:

 source 'http://rubygems.org' gem 'rake', '0.8.7' gem 'tzinfo', '0.3.27' gem 'mail', '2.2.16' gem 'arel', '2.0.9' gem 'rack', '1.2.2' gem 'i18n', '0.6.0' gem 'rails', '3.0.5' gem 'mysql2' gem 'paperclip' gem 'devise' gem 'jquery-rails' gem 'acts-as-taggable-on' gem "will_paginate", "~> 3.0.pre2" gem 'tiny_mce' gem "oa-oauth", :require => "omniauth/oauth" gem "acts_as_list" 

"bundle show i18n" gives

 /usr/lib/ruby/gems/1.8/gems/i18n-0.6.0 

Is this a mistake in my application or a hosting error? How do I resolve it?

0
source share
1 answer

he had a service error. here is their answer:

"Passenger and shell are on two different servers. I18n was installed on Passenger, but the version was not 0.6.0."

since I suspected that different gems were used for the passenger than those used in the kit

0
source

All Articles