2014-03-25 78 views
0

我剛做了一個軟件包更新,現在當我運行'rails s'時,我得到了經典'您的Gemfile中存在錯誤,並且Bundler無法繼續。沒有其他輸出。 Gemfile本身並沒有在一段時間內簽入,似乎沒有任何改變。您的Gemfile中發生錯誤,Bundler無法繼續

任何人都可以在下面的Gemfile中發現問題嗎?或者有關如何從rails s獲得更詳細的輸出的任何提示?問題可能在Gemfile.lock中嗎?

source 'https://rubygems.org' 

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

gem 'rails', '~> 3.2'     # web framework 
gem 'pg'        # PostgreSQL driver 
gem 'jquery-rails' 

# Gems used only for assets and not required 
# in production environments by default. 
group :assets do 
    gem 'sass-rails', '~> 3.2.3' 
    gem 'coffee-rails', '~> 3.2.1' 
    gem 'uglifier', '>= 1.0.3' 
    gem 'compass-rails' 
end 

group :development, :test do 
    gem 'rspec-rails' 
end 

group :development do 
    gem 'heroku' 
    gem 'taps' 
    gem 'foreman' 
    gem 'awesome_print' 
end 

# To use ActiveModel has_secure_password 
# gem 'bcrypt-ruby', '~> 3.0.0' 

# To use Jbuilder templates for JSON 
# gem 'jbuilder' 

# Use unicorn as the app server 
# gem 'unicorn' 

# Deploy with Capistrano 
# gem 'capistrano' 

# To use debugger 
# gem 'debugger' 
+0

有你運行bundle更新之後還安裝..? –

+0

刪除Gemfile.lock確實沒有什麼壞處,然後重新從終端重新運行包。但是,您是否檢查過您的development.log文件以獲取更多信息?默認情況下,輸出到控制檯/登錄處於開發模式時,Rails非常詳細。 –

回答

0

試試這一次

bundle exec rails s 
相關問題