Question on modules

What's the proper syntax for including a module in a controller?

example:

include SomeSystem class ApplicationController < ActionController::Base

end

does it go before or after the class definition ? and do I need some quotes around it ?

TIA Stuart