I know that I'm late on this, but while trying to work out how to do this myself I stumbled on this question.
I think the answer to why the class re-opening is not working as expected in the example code is that the class is initially defined as:
(in model1.rb)
class Model1 < ActiveRecord::Base
and then a re-opened as:
(in model1_section1.rb)
class Model1
i.e. the second definition is lacking the inherited class.
I've used separate .rb files to split up my enormous models, and they have worked nicely for me. Though I'll admit I used include and something more like this:
(in workcase.rb)
class Workcase < ActiveRecord::Base
include AuthorizationsWorkcase
include WorkcaseMakePublic
include WorkcasePostActions
after_create :set_post_create_attributes
# associations, etc
# rest of my core model definition
end
(in workcase_make_public.rb)
module WorkcaseMakePublic
def alt_url_subject
self.subject.gsub(/[^a-zA-Z0-9]/, '_').downcase
end
# more object definitions
end
class Workcase < ActiveRecord::Base
def self.get_my_stuff
do_something_non_instance_related
end
# more class definitions
end
This has allowed me to incorporate class and object methods into each included .rb file. The only caveat (since I didn't use the concerns extension) was that access to class constants from within module object methods required the constant to be qualified with the class name (such as Workcase::SOME_CONST) rather than directly as would be allowable if called in the primary file.
Overall, this approach seemed to require the least amount of rewrite of my code to make things into manageable blocks of code.
Maybe this is not the true 'Rails way' but it does seem to work nicely in my particular scenario.