无法使用ruby 2.0安装bundler 1.3.0

Vin*_* B. 5 ruby rubygems bundler ruby-2.0

我安装了Ruby 2.0.0并且编译顺利但是当我使用bundle install它时给了我这个错误:

Bundler is not compatible with Ruby 2.0 or Rubygems 2.0.
Please upgrade to Bundler 1.3 or higher.

如果我尝试更新它gem update bundler:

$ gem update bundler
Updating installed gems
Nothing to update

当我尝试更新RubyGems时:

$ gem update --system
Latest version currently installed. Aborting.

我错过了什么?

我正在使用Ruby 2.0.0-p0和RVM 1.18.14.

mav*_*air 7

Bundler 1.3尚未发布,直到你必须安装预发布版本:

gem install bundler --pre
Run Code Online (Sandbox Code Playgroud)