-1

I'm in a strange situation, I install bundler in my RVM gemset, it sais it installed correctly, but when I try to run it asks me to to install bundler again: here is a transcript of my terminal interaction:

abc@li243-166:/srv/www/dinner/current$ bundle
ERROR: Gem bundler is not installed, run `gem install bundler` first.
abc@li243-166:/srv/www/dinner/current$ gem install bundler
Successfully installed bundler-1.3.5
1 gem installed
abc@li243-166:/srv/www/dinner/current$ bundle
ERROR: Gem bundler is not installed, run `gem install bundler` first.
abc@li243-166:/srv/www/dinner/current$
Victor S
  • 243
  • 2
  • 7

2 Answers2

2

You'll likely need to run an rvm use ruby-x.y.z-pA command to set up the specific ruby environment you're using, and especially gemset. Once that's done, it should all be good.

sysadmin1138
  • 131,083
  • 18
  • 173
  • 296
0

I've had to re-install the gem and gemsets

Victor S
  • 243
  • 2
  • 7