2011-08-16 2 views
1

나는 spree_wholesale 보석을 설치하려고 해요 시작하지만 오류를 수신 할 때 오류 "체크 아웃되지 않는다"보석을 설치하는 것,하지만 보석을 수신 내 Gemfile : 여기Bundler를 내가 승객을 시작할 때 웹 서비스

source 'http://rubygems.org' 

gem 'rails', '3.0.9' 
gem 'passenger', '3.0.2' 
gem 'mysql', '2.8.1' 
gem 'spree', '0.60.1' 
gem 'spree_wholesale', :git => 'git://github.com/citrus/spree_wholesale', :branch => '0.60.x' 

내가

여기
[email protected]:~/w8_test$ bundle install 
Using rake (0.8.7) 
Using abstract (1.0.0) 
Using activesupport (3.0.9) 
Using builder (2.1.2) 
Using i18n (0.5.0) 
Using activemodel (3.0.9) 
Using erubis (2.6.6) 
Using rack (1.2.3) 
Using rack-mount (0.6.14) 
Using rack-test (0.5.7) 
Using tzinfo (0.3.29) 
Using actionpack (3.0.9) 
Using mime-types (1.16) 
Using polyglot (0.3.2) 
Using treetop (1.4.10) 
Using mail (2.2.19) 
Using actionmailer (3.0.9) 
Using braintree (2.10.2) 
Using activemerchant (1.15.0) 
Using arel (2.0.10) 
Using activerecord (3.0.9) 
Using activeresource (3.0.9) 
Using acts_as_list (0.1.2) 
Using bcrypt-ruby (2.1.4) 
Using bundler (1.0.17) 
Using cancan (1.6.4) 
Using daemon_controller (0.2.6) 
Using orm_adapter (0.0.5) 
Using warden (1.0.5) 
Using devise (1.3.3) 
Using faker (0.9.5) 
Using fastthread (1.0.7) 
Using spruz (0.2.7) 
Using file-tail (1.0.5) 
Using highline (1.5.1) 
Using rdoc (3.9.1) 
Using thor (0.14.6) 
Using railties (3.0.9) 
Using rails (3.0.9) 
Using jquery-rails (0.2.6) 
Using meta_search (1.0.5) 
Using mysql (2.8.1) 
Using nested_set (1.6.6) 
Using paperclip (2.3.11) 
Using passenger (3.0.2) 
Using rd_find_by_param (0.1.1) 
Using rd_resource_controller (1.0.1) 
Using rd_unobtrusive_date_picker (0.1.0) 
Using state_machine (0.9.4) 
Using stringex (1.0.3) 
Using will_paginate (3.0.pre2) 
Using spree_core (0.60.1) 
Using spree_auth (0.60.1) 
Using spree_api (0.60.1) 
Using spree_dash (0.60.1) 
Using spree_promo (0.60.1) 
Using spree_sample (0.60.1) 
Using spree (0.60.1) 
Using spree_wholesale (0.59.0.0) from git://github.com/citrus/spree_wholesale (at 0.60.x) 
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed. 

가 어입니다 '설치 번들'실행할 때 출력 보석이 설치되어 있습니까?

[email protected]:~/w8_test$ bundle show spree_wholesale 
/home/dan/.rvm/gems/[email protected]_test/bundler/gems/spree_wholesale-a74adcb64660 

답변

3

버전 0.60은 필요하지만 0.59가 있습니다. 시도해보십시오 bundle update spree_wholesale. 당신이 참조하는 지점에서

version is 0.59

+0

Gemfile에서 : branch => '0.60.x'를 지정할 때 spree_wholesale 0.59를 가져온 이유는 무엇입니까? – sybind

+0

방금 ​​'번들 업데이트 spree_wholesale'시도했지만 여전히 0.59 있습니다. 결과는 다음과 같습니다 : "git : //github.com/citrus/spree_wholesale (0.60.x)의 spree_wholesale (0.59.0.0) 사용" – sybind

+0

예, [버전 파일] (https://github.com/)을보십시오. 감귤류/spree_wholesale/blob/0.60.x/lib/spree_wholesale/version.rb) – Serabe

0

는 아마 내 경우에는, 심지어 난사를 사용하지 않는 한이 문제가 발생했다 이어지고 버전을 함께 할 수있는 뭔가를 가지고 있지만.

비슷한 문제를 해결하기 위해 모든 노력을 다했습니다. 여기에 모든 문제 해결 단계를 따르는 것은 결국 해결 :

https://github.com/carlhuda/bundler/blob/master/ISSUES.md

행운을 빕니다!

관련 문제