2014-02-19 2 views
2

나는 sidekiq gem을 최신 버전으로 업데이트했습니다. 이제 서버를 실행하려고하면 다음과 같은 오류가 발생합니다.해당 파일을로드 할 수 없습니다. 시스템 오류

cannot load such file -- systemu 
/home/kiprosh22/.rvm/gems/[email protected]/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:251:in `require' 
/home/kiprosh22/.rvm/gems/[email protected]/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:251:in `block in require' 
/home/kiprosh22/.rvm/gems/[email protected]/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:236:in `load_dependency' 
/home/kiprosh22/.rvm/gems/[email protected]/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:251:in `require' 
/home/kiprosh22/.rvm/gems/[email protected]/gems/macaddr-1.6.2/lib/macaddr.rb:23:in `<top (required)>' 
...... 

동일한 원인을 찾을 수 없습니다.

답변

2

bundle update을 실행 한 후 오늘 아침에이 문제가 발생했습니다.

지금은 그것을 클리어 Gemfile

gem macaddr, '1.6.1'

추가 및 bundle update macaddr을 실행.

3

systemu 보석의 최신 버전은 latest commit (다른 사용자가 추가 한 주석 참조)로 인해 dependency issue (마지막 코멘트 참조)이 표시됩니다.

관련 문제