I've been working on my facebook rails app on my local machine (using rfacebook 0.9.8 and rails 1.2.2). When I pushed it to hostingrails two weeks ago, there were some errors, and I had to install and unpack rfacebook-0.9.8 (and reinstall the rfacebook plugin) again, and everything worked.
Last night, in a subsequent deployment, though, nothing worked. I think that all the errors I'm getting are due to the fact that my gem environment is mixing old versions of the hostingrails gems (such as rfacebook-0.9.2, which I see in some of the traces) with newer ones in my vendor directory.
In order to troubleshoot this, I want to know how to show the gem 'environment': that is, print out the versions of all rubygems being used. Can anyone tell me how to do that in production && development environments? Also, are there any environment variables that can be set to force a specific version of a gem to be used? (now that require_gem is deprecated)
Any other ideas also appreciated. (Yes, I think it would solve my problem if the hostingrails guys would upgrade their rfacebook gem to the version I need, but I need to learn enough that I don't get 48 hours of downtime each time I deploy!)
Dave