Passenger says Bundler:GemNotFound error while the bundle install says it's there

懵懂的女人 提交于 2019-12-17 21:36:50

问题


i get Passenger error on shared hosting

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

but if i run "bundle install" it says everything is ok :(

and the contents of the Gemfile are:

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 it the error in my app or error of the hosting? how do i solve it?


回答1:


it was hosting service bug. here's their reply:

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

so as i suspected different gems were used for passenger than the ones bundler used



来源:https://stackoverflow.com/questions/6676890/passenger-says-bundlergemnotfound-error-while-the-bundle-install-says-its-ther

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!