Can't install package 1.3.0 with ruby ​​2.0

I installed Ruby 2.0.0 and the compilation went fine, but when I use it bundle install, it gives me this error:

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

If I try to update it with gem update bundler:

$ gem update bundler
Updating installed gems
Nothing to update

And when I try to update RubyGems:

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

What am I missing?

I am using Ruby 2.0.0-p0 and RVM 1.18.14.

+5
source share
1 answer

Bundler 1.3 is not yet released until you have installed the preview version:

gem install bundler --pre
+7
source

All Articles