How do I access in an ActionView a variable, that has been defined in the ApplicationController?
In my case, I'd like to make my layout respond to a variable that's been set-up in the ApplicationController.
If it were a view, associated with a controller's action, I'd only need to set-up an instance var in the corresponding action and all would be OK. But accessing such data in the layout is something new to me.
Thanks!