Reputation: 18649
I just installed Ruby 1.8.7 on Windows 7 and the shell recognizes the ruby command, but not when I try to run bundle install
Is that common or expected? How do I get the bundler to work?
Thanks!
Upvotes: 3
Views: 2976
Reputation: 55888
Make sure the bundler gem is installed. It might not be included in your ruby distribution
gem install bundler
Upvotes: 12