捆绑安装循环依赖 [英] bundle install circular dependencies

查看:71
本文介绍了捆绑安装循环依赖的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以下控制台日志应描述该问题

The following console logs should describe the issue

bundle install
Could not find multi_json-1.1.0 in any of the sources
Run `bundle install` to install missing gems.

捆绑安装要求我捆绑安装。

bundle install asks me to bundle install.

尝试过: https://github.com/mpapis/rubygems-bundler/issues/ 4

看过: https://github.com/ carlhuda / bundler / issues / 865

不确定下一步要去哪里。

Not sure where to go next.

有趣的是,如果我们评论供应商/宝石内部的所有宝石,则捆绑包可以正常工作。

Also of interest, if we comment all the gems from inside vendor/gems the bundle works fine.

source'http://rubygems.org'

source 'http://rubygems.org'

gem 'rails', '~> 3.2.2'

gem 'mysql2'
gem 'thin'

# Asset template engines
gem 'coffee-script'
gem 'uglifier'
gem 'sprockets'
gem 'less-js'
gem 'execjs'
gem 'nokogiri'
gem 'lucy'
gem 'babilu'
gem 'simple_form'
gem 'mechanize'
gem 'geoip'
gem 'less'
gem 'bb-ruby'
gem 'client_side_validations', "~> 3.2.0.beta.2"
gem 'client_side_validations-simple_form'
gem 'require_all'

#for avatars
gem 'paperclip'

gem 'rmagick'
gem "multipart-post"
gem 'gibberish'
# Memcached client
gem 'dalli'

#to support tables without auto-incrementing primary keys
gem 'composite_primary_keys', "~> 5.0.1"

gem 'calendar_helper', :require => 'calendar_helper'

gem 'jquery-rails'

gem 'capistrano'
gem 'capistrano-ext'

gem 'simple_form'
gem 'htmlentities'
gem 'will_paginate'

gem 'airbrake', :path => "vendor/gems/airbrake"

gem "uservoice", :path => "vendor/gems/uservoice"

# For spambots
gem "honeypot-captcha"

# Internationalization GUI
gem "tolk", :git => "http://github.com/miloops/tolk.git", :branch => "rails31"
gem "will-paginate-i18n"

gem "omniauth"
gem "omniauth-facebook"
gem "omniauth-justintv", :git => 'http://github.com/themindoverall/omniauth-justintv.git'
gem 'oauth'

gem 'rails-i18n'

# For rate limiting
gem "rack-throttle", :path => "vendor/gems/rack-throttle"

gem "xfire-api", :path => "vendor/gems/xfire-api"
gem "anametrix", :path => "vendor/gems/anametrix"

#To make ruby debug work see: http://stackoverflow.com/questions/6438116/rails-with-ruby-debugger-throw-symbol-not-found-ruby-current-thread-loaderro
group :development, :test do
  #gem 'ruby-debug-base19', '0.11.26', :path => "~/.rvm/gems/ruby-1.9.3-p#{RUBY_PATCHLEVEL}/gems/ruby-debug-base19-0.11.26/"
  #gem 'linecache19', '0.5.13', :path => "~/.rvm/gems/ruby-1.9.3-p#{RUBY_PATCHLEVEL}/gems/linecache19-0.5.13/"
  #gem 'ruby-debug19', :require => 'ruby-debug'
  gem 'ruby_parser'
end

group :test do
  gem 'ruby-prof'
  gem 'test-unit' # For performance testing

  gem 'turn', :require => false
  gem 'factory_girl_rails', "~> 1.0.1"
  gem 'capybara', "~> 1.0.0"
  gem 'database_cleaner', '~> 0.6.7'

  gem 'rspec-rails', "~> 2.6.1"
  gem 'cucumber-rails', "~> 1.0.0"
  gem 'webrat', "~> 0.7.3"
  gem 'autotest'
  gem 'simplecov'
  gem 'autotest-rails-pure'

    gem 'simplecov', :require => false, :group => :test
  gem 'spork'
end

group :production do
    gem 'rack-google_analytics', :require => "rack/google_analytics"
end


推荐答案

如果任何人都被困在这个问题上答案是我们自制的宝石之一:

If anyone turns out to be stuck on this what turned out to be the answer is one of our homegrown gems:

gem xfire-api,:path =>供应商/ gems / xfire-api

gem "xfire-api", :path => "vendor/gems/xfire-api"

其中有一个要求,由gemspec中未指定的gem提供。如果您坚持这样做,并且拥有自制的宝石,请仔细阅读所有要求,并确保所有文件均由您在Gemspec中指定的宝石提供。

had a require in it provided by a gem that was not specified in the gemspec. If you're stuck on this and have homegrown gems take a look through all your requires and makes sure all the files are provided by gems you specify in the Gemspec.

这篇关于捆绑安装循环依赖的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆