I want to define a global before filter that will run before every request that will set up some instance variables for all the methods.
I have set up the filter and have also set up some route specific before filters. It appears that my route specific filters are being executed prior to my global one and therefore crashing because expected instance variables are not set yet.
Is there a way to specify the order in which before filters are processed?