The same question was asked here, though there wasn't an answer that worked in my case.
I am completely new to Ruby/Rails/RVM/Bundler/Gemfile/etc. and I am following Hertl's Rails 3 Tutorial. I am having the same problem as stated in the link above: Bundler could not find compatible versions for gem bundler.
When I run "$ bundle install" I get the following message:
Bundler could not find compatible versions for gem "bundler":
In Gemfile:
rails (= 3.0.1) ruby depends on
bundler (~> 1.0.0) ruby
Current Bundler version:
bundler (1.2.1)
This Gemfile requires a different version of Bundler.
Perhaps you need to update Bundler by running `gem install bundler`?
I have no idea where to go from here. I have tried Hertl's suggestion of specifying a specific Bundler version -- he suggests trying 1.2.5 or 1.3.1, whichever works -- but I get the same error even when specifying a specific version of Bundler.
I really have no idea where to go from here, and am frustrated by the lack of clarity. A simple diagram would help me understand the relationship between these disparate utilities; otherwise I'm just shooting in the dark. An answer that helps relate the different components necessary to get Rails operative would be great!
Does anybody have good advice?