0
votes

I was doing the Ruby on Rails tutorial by Martl and closed my terminal on my Mac. I had reached Chapter 10 without a problem. When I opened another terminal nothing is working. When I run bundle install I get the following error message:

/Library/Ruby/Site/1.8/rubygems/dependency.rb:247:in to_specs': Could not find bundler (>= 0) amongst [rake-0.8.7, rake-0.8.7] (Gem::LoadError) from /Library/Ruby/Site/1.8/rubygems/dependency.rb:256:into_spec' from /Library/Ruby/Site/1.8/rubygems.rb:1182:in `gem' from /usr/bin/bundle:18

How do I get my terminal back to where it was?

1

1 Answers

0
votes

Sounds like your RVM environment is not being loaded when you restart your terminal. The Ruby On Rails tutorial glosses over RVM installation rather quickly and thats why this step often gets missed.

Check out the RVM installation guide here in particular Section 2 which describes how to ensure the RVM commands go into your .bash_profile.

Let me know if you need further help.