>
> Help! I'm kinda stuck...I'm pretty sure that I somehow need to
> 'freeze' RubyGem itself (aka gem) although given the error below, I'm
> not sure. I can't downgrade & freeze to the rails version on the host
> since my app depends on some Rails2x stuff.
>
> If indeed I need to 'freeze' gem', is there standard way to do this?
> or any idea as to what exactly I'd need to do (i.e. how do I get my
> app to "see" the correct 'gem' command).
That could be the case: the require_gem method was replaced by gem in
newer versions of ruby gems. (ie the problem here isn't the gem
command itself but the gem library.
You should be able to convince ruby to load the gem library from
somewhere else (either via the -I option or via fiddling with $LOAD_PATH
Fred