I have managed to run a basic rails app1 on App Engine using: http://gist.github.com/268192
So, on my basic app2, I install CE, which works fine on local machine. (communityengine.org)
But, when I follow the same steps on my actual app2, where community_engine plugin is installed and all the gems are frozen, the app engine installer script asks for to over write various files like boot.rb, routes.rb, which I don't allow.
So, as expected, when I publish the rails + ce app to GAE, it's not published and it also screws the local installation of CE on app2.
So, the problem is obvious, CE uses ActiveRecord, and GAE uses DataMapper.
So, my question can also be rephrased as: Can we migrate an existing ROR App using Active Record to GAE which uses DataMapper?
PS: This is my first project on ROR and GAE.