I am doing Rails 2.3 to 3.2 upgrade. During this, I have changed lots of things. Now I don't see any HTML in response while opening homepage of the web app. I have verified using after_filter that my controllers do return HTML but Rails does not return that HTML in response code. I tried running app at debug log level but didn't see anything related in logs.
Can someone please help me solve this problem?
Edit: I tried logging at ActionDispacther, ActiveSupport, Rack files but didn't get any clue of what's wrong with server.
Make sure your assets are being served! Something is causing your app to 302, so maybe the routing or the assets are doing that.
I know you might have already seen this, but do a checklist on the followings:
Source:http://www.rails-upgrade-checklist.com/#3.0
Getting to Rails 3.0
Getting to Rails 3.2
Someone else had another issue and used the Rails gem upgrade:
How to upgrade Rails app from 2.3.5 to 3.2.x?
If all else failed, checkout rbates:
http://railscasts.com/episodes/282-upgrading-to-rails-3-1