2012-03-22 49 views
1

以下控制台日志应该说明问题捆绑安装循环依赖

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

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

曾尝试:https://github.com/mpapis/rubygems-bundler/issues/4
看着:https://github.com/carlhuda/bundler/issues/865

不知道接下来要去哪里。同样有兴趣的是,如果我们从供应商/宝石内部评论所有宝石,捆绑工作正常。

源 '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 
+1

显示你的gemfile。 – uday 2012-03-22 22:58:50

+0

添加了Gemfile,谢谢你。 – 2012-03-22 23:42:23

+0

请将gem放在您的gemfile&do'包更新程序中&试试 – uday 2012-03-23 00:39:30

回答

0

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

有一个在gemspec中没有指定的gem提供的require。如果你坚持这一点,并让自己开发的宝石看看你的所有需求,并确保所有文件都由您在Gemspec中指定的宝石提供。

+0

只是想知道你在使用anametrix – 2012-08-14 03:07:38

0

你有没有宣布在Gemfile创业板?有时,它帮助指定为你为一些做了具体的版本:如果有人真可谓是停留在这个什么结果是答案是我们自主开发的宝石之一

gem 'multi-json', '1.1.0' 
+0

玩过那个。不行。这不是特别的宝石,那只是第一个需要更新的宝石。将服务器上的捆绑销毁掉,然后询问rake而不是multi-json。这只是需要安装的第一款宝石。 – 2012-03-23 00:01:23