Basically your browser is caching the the web pages, and rails is currently configured to allow you to do that. You will have to manually specify in rails that you do not want page caching to occur.
Refer to this link here. It should be exactly what you are looking for.
Basically what the page I linked is telling you to do is to add a couple of lines to application_controller.rb:
This:
before_filter :set_no_cache
and the function:
def set_no_cache
response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
response.headers["Pragma"] = "no-cache"
response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT"
end
Let me know if it works or not.