I can't seem to get the combination of Ubuntu 12.04 Precise, Ruby (with Rails ideally!) and Google Appengine to work.
I tried to follow the appengine-jruby instructions on setting up a project for ruby on appengine. However, when I ran the second command, appcfg.rb generate_app hello, I got the following error.
$ appcfg.rb generate_app hello
=> Bundling gems
ERROR: While executing gem ... (RuntimeError)
Downgrading RubyGems
The general advice seems to be downgrade rubygems to 1.3.7. So I try using the recommended general method to downgrade gems and ubuntu complains as follows.
$ sudo gem update --system 1.3.7
ERROR: gem update --system is disabled on Debian, because it will overwrite the
content of the rubygems Debian package, and might break your Debian system in
subtle ways. The Debian-supported way to update rubygems is through apt-get, using
Debian official repositories.
If you really know what you are doing, you can still update rubygems by setting
the REALLY_GEM_UPDATE_SYSTEM environment variable, but please remember that this
is completely unsupported by Debian.
Setting REALLY_GEM_UPDATE_SYSTEM doesn't sound very safe, but I ended up trying it anyway since there didn't seem to be any ubuntu packages available of earlier versions of gems when i checked.
$ export REALLY_GEM_UPDATE_SYSTEM=sometext
However rerunning gem update --system 1.3.7 gave me the same error, so that wasn't very productive. Not to mention other people seem to have problems with downgrading rubygems anyway.
So I seem to be at an impasse. Is there any way to get this combination of techs to work?