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
