2013-12-09 122 views
2

我剛剛安裝了mavricks,Postgres.app,RVM,Git。Rails Bundle在bootstrap-sass上安裝失敗

我創建了一個標準的新的rails應用程序,一切正常。

但是,當我試圖從github抓取一個項目,無法獲得捆綁安裝運行。

d3 git:(master) bundle install 
Fetching gem metadata from https://rubygems.org/....... 
Fetching gem metadata from https://rubygems.org/.. 
Updating git://github.com/thomas-mcdonald/bootstrap-sass.git 
fatal: Could not parse object '9c6c07f74ff515cf38380b014cfede14a4f0eae4'. 
Git error: command `git reset --hard 9c6c07f74ff515cf38380b014cfede14a4f0eae4` 
in directory 
/Users/tyler/.rvm/gems/[email protected]/bundler/gems/bootstrap-sass-9c6c07f74ff5 
has failed. 
If this error persists you could try removing the cache directory 
'/Users/tyler/.rvm/gems/[email protected]/cache/bundler/git/bootstrap-sass-33efd1d8ffb6176fdb805029a30f02a6edfbae2e' 

我試着移除項目並再次克隆它。

我嘗試刪除gemset並從gemset中刪除所有的寶石。

我也試着按照錯誤消息並刪除緩存文件夾。

請幫助我真的需要回到這個項目的工作。

Update: 

我剛剛嘗試過更新包。

➜ d3 git:(master) bundle update 
Updating git://github.com/thomas-mcdonald/bootstrap-sass.git 
fatal: ambiguous argument '3': unknown revision or path not in the working tree. 
Use '--' to separate paths from revisions, like this: 
'git <command> [<revision>...] -- [<file>...]' 
Git error: command `git rev-parse 3` in directory 
/Users/tyler/.rvm/gems/[email protected]/cache/bundler/git/bootstrap-sass-33efd1d8ffb6176fdb805029a30f02a6edfbae2e 
has failed. 
If this error persists you could try removing the cache directory 
'/Users/tyler/.rvm/gems/[email protected]/cache/bundler/git/bootstrap-sass-33efd1d8ffb6176fdb805029a30f02a6edfbae2e' 

更新

source 'https://rubygems.org' 
ruby '1.9.3' 

gem 'rails', '3.2.15' 

# Bundle edge Rails instead: 
# gem 'rails', :git => 'git://github.com/rails/rails.git' 

gem 'pg' 
gem 'thin' 
gem 'unicorn' 
gem 'newrelic_rpm' 
gem 'mixpanel-ruby' 

# Gems used only for assets and not required 
# in production environments by default. 
gem 'sass-rails', '~> 3.2.3' 
gem 'coffee-rails', '~> 3.2.1' 
gem 'uglifier', '>= 1.0.3' 
gem 'jquery-rails' 
gem 'bootstrap-sass', :git => 'git://github.com/thomas-mcdonald/bootstrap-sass.git', :branch => '3' 
gem "font-awesome-rails" 
gem 'haml_coffee_assets' 
gem 'execjs' 

group :development, :test do 
    gem 'jasmine-rails' 
    gem "letter_opener" 
    gem 'pry-rails' 
    gem 'rspec-rails' 
    gem 'capybara' 
    gem 'spin' 
end 

gem 'active_link_to' 
gem 'acts_as_list' 
gem "aws-sdk" 
gem 'backbone-on-rails' 
gem 'browser' 
gem 'devise' 
gem 'gon' 
gem 'js-routes' 
gem 'oj' 
gem 'pusher' 
gem 'rabl' 
gem 'simple_form' 
+0

您可以複製並粘貼Gemfile中的內容? – mohamagdy

+0

@mohamagdy這裏是我的Gemfile,感謝您的幫助。 – Tyler

回答

5

沒有分支3https://github.com/thomas-mcdonald/bootstrap-sass/了。這就是Git抱怨的原因。所以,你需要從改變:

gem 'bootstrap-sass', :github => 'git://github.com/thomas-mcdonald/bootstrap-sass.git', :branch => '3' 

到:

gem 'bootstrap-sass', :git => 'git://github.com/thomas-mcdonald/bootstrap-sass.git' 

或使用簡寫語法:

gem 'bootstrap-sass', :github => 'thomas-mcdonald/bootstrap-sass' 
+0

謝謝!它正在安裝寶石 – Tyler