'bundle install'上的Ruby错误

时间:2011-12-20 15:30:38

标签: ruby-on-rails-3 sinatra bundler gemfile

我正在尝试开始运行我的第一个Ruby on Rails应用程序(来自本教程:http://devcenter.heroku.com/articles/ruby)。

在制作Web ruby​​文件和Gemfile之后,我尝试运行bundle install以设置服务器。它失败并显示以下错误消息:

/Users/schlomo/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/site_ruby/1.9.1/rubygems/dependency.rb:247:in `to_specs': Could not find bundler (>= 0) amongst [minitest-1.6.0, rake-0.8.7, rdoc-2.5.8] (Gem::LoadError)
from /Users/schlomo/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/site_ruby/1.9.1/rubygems/dependency.rb:256:in `to_spec'
from /Users/schlomo/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/site_ruby/1.9.1/rubygems.rb:1210:in `gem'
from /Users/schlomo/.rvm/gems/ruby-1.9.2-p290/bin/bundle:18:in `<main>'

我已尝试重新安装bundlerrvm,但bundle install仍无效。

这是我的Web.rb文件中的代码:

require 'sinatra'
get '/' do
  "Hello, world"
end

我的Gemfile中的代码:

source :rubygems
gem 'sinatra', '1.3.1'
gem 'thin', '1.2.7'

0 个答案:

没有答案