Helpers Sharing in Rails
There are many ways to share helper modules with Ruby on Rails but I couldn't quite figure out how to get an helper part of a module (located for instance in /app/helpers/some_module/other_helper) mixed-in my templates. After some head scratching, I finally came up with this:
class SomeModule::SomeController < SomeModule::BaseController
helper "some_module/other_helper".to_sym
end
Although this line of code gives me cold sweat, it seems to work fine and looking at the current implementation of the Controller::Base.helper method it looks it's all I can do but... Am I missing something here?

