Assuming foo_one calls foo_too (so it’s in the same request - hence your global variable mention), then you could define an attr_accessor on foo_two’s controller and set it from there.
But, if it’s not being executed in the same request, session (be it Rails session, database or memcached) is the only way (or flash so it’s automatically removed after the next request).