It looks like ActionController::StatusCodes
has been removed from Rails 3.
I used synonyms for HTTP status codes such as
200 => :ok
404 => :not_found
500 => :internal_server_error
For more codes, see here:
http://apidock.com/rails/ActionController/Base/render#254-List-of-status-codes-and-their-symbols
Where can I find these in Rails 3?