Is it possible to have a global variable in Rails that is scoped to each request? Meaning, the variable doesn't persist across Rack requests.
I need this because I want to be able to raise events throughout the application. At the end of the request, I want to be able to collect these raised events in an array and send them to the client.
ActiveSupport::Notifications? – Ryan Bigg Nov 11 '12 at 21:46