show/hide this revision's text 3 Found an even better method

We needed to do this, and there is a very simple way.

move your models into the sub-folders, and then tell rails about the sub-folder to load files from all subfolders in the your environment.rb file:

config.load_paths += ["#{RAILS_ROOT}/models/blog", "#{RAILS_ROOT}/models/themes", etc..]
Dir["#{RAILS_ROOT}/app/models/*"].find_all { |f| File.stat(f).directory? }

No namespacing required, and the models can be referred to as normal in your app

show/hide this revision's text 2 added 4 characters in body

We needed to do this, and there is a very simple way.

move your models into the sub-folders, and then tell rails about the sub-folder in the environment.rb file:

config.load_paths += ["#{RAILS_ROOT}/models/blog", "#{RAILS_ROOT}/models/themes", eetc..]

No namespacing required, and the models can be referred to as normal in your app

show/hide this revision's text 1

We needed to do this, and there is a very simple way.

move your models into the sub-folders, and then tell rails about the sub-folder in the environment.rb file:

config.load_paths += ["#{RAILS_ROOT}/models/blog", "#{RAILS_ROOT}/models/themes", e]

No namespacing required, and the models can be referred to as normal in your app