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::Core::Extensions::User
However in development before every request (and after reload! is called in the console) all models are reloaded but because the initializers are not run again the module is not included. Leaving a model with 'missing parts'.
Because the model is in a plugin it does not seem wise to include code directly in the class which would be the usual approach.
For now I have simply added a before_filter which includes the module if in development environment. But I have copy/pasted and have duplicate code in the initializer and application controller.
# Class extensions in initalizers are over-writtern each request
def development_loading
if RAILS_ENV == 'development'
User.send :include, Qwerty::Core::Extensions::User
end
end
Is there a better way?
As a side note the plugin is mine, so I could add code in to it, but the extensions held in the module may not always be present...