1.   class MyController < ActionController::Base
2.     helper :my_helper
3.   end

I see this construct in Ruby on Rails a lot, and I don't know what is
going on in line 2.

Is this invoking a method called "helper" with the argument
":my_helper"? And if so, when does this get invoked? 

Thanks.