I had rubygems 1.3.5 (or 1.3.6?) installed and then made a sudo gem update after a long while again. Some gems complained they needed a newer gems version. Because sudo gem update --system is deactivated on Ubuntu I followed these steps: How can I get RubyGems 1.3.6 on Ubuntu 10.4 But now I cannot start the dev_appserver.rb anymore, it says:

=> Bundling gems
ERROR:  While executing gem ... (RuntimeError)
    Unknown command bundle

I also tried to do sudo gem update and sudo gem update --system again a few times but everything is up-to-date now. Here is a list of my gems: http://pastebin.com/cFaTCyF5

link|improve this question

68% accept rate
Are you using ruby, or jruby? – Andrew Grimm Mar 21 at 2:10
Ruby (MRI)..... – Philip Mar 21 at 21:19
Anyways, Rubygems 1.3.7 is, as far I know, the only version you can make work easily currently – Philip Mar 21 at 21:20
feedback

3 Answers

It's a bit of a hack around but I can't really tell what's going on properly from what you sent but I know a few people have been having problems after running gem update --system lately. Find out what version you've just installed with

gem list

Look for the update, should look something like this: rubygems-update-1.5.0

Then try rolling back your rubygems version

sudo gem uninstall rubygems-update -v 1.5.0
sudo gem install rubygems-update -v 1.4.2          <-- try a different version
link|improve this answer
feedback

gem install --system 1.3.7 worked in my case

link|improve this answer
depends on which appengine version you use... actually I know now several configurations that work, though all of them include using old versions of a lot of gems. (fixing the versions in the gemfile.) and one needs to uninstall this ubuntu gem-hack allowing to update rubygems with rubygems... still I hesitate to post my own answer, which is just a hack anyways... – Philip Apr 29 '11 at 18:42
feedback

Have you tried gem install bundler?

link|improve this answer
yes, same result... – Philip Mar 5 '11 at 17:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.