I am extending a class (which is in a plugin) by including a module, this is done in an initializer.
require \'qwerty/core/user\' User.send :include, Qwerty::Co
Slightly more elegant solution than the one accepted since it can be put in an initializer:
require 'dispatcher' Dispatcher.to_prepare do # stuff that needs to happen once per initialization end