Is there a way that you can get a collection of all of the Models in your Rails app?
Basically, can I do the likes of: -
Models.each do |model|
puts model.class.name
end
Thanks in advance.
|
Is there a way that you can get a collection of all of the Models in your Rails app? Basically, can I do the likes of: -
Thanks in advance. |
|||||
|
|
Models do not register themselves to a master object, so no, Rails does not have the list of models. But you could still look in the content of the models directory of your application...
EDIT: Another (wild) idea would be to use Ruby reflection to search for every classes that extends ActiveRecord::Base. Don't know how you can list all the classes though... EDIT: Just for fun, I found a way to list all classes
EDIT: Finally succeeded in listing all models without looking at directories
If you want to handle derived class too, then you will need to test the whole superclass chain. I did it by adding a method to the Class class:
|
|||||||||||||||||
|
|
Just in case anyone stumbles on this one, I've got another solution, not relying on dir reading or extending the Class class...
This will return an array of classes. So you can then do
|
|||||||||||||||||||||
|
|
The whole answer for current Rails 3 is: If
Then:
This makes sure all models in your application, regardless of where they are, are loaded, and any gems you are using which provide models are also loaded. |
|||||||||||||
|
|
I looked for ways to do this and ended up choosing this way:
source: http://portfo.li/rails/348561-how-can-one-list-all-database-tables-from-one-project |
|||||||||||||||
|
|
This seems to work for me:
Rails only loads models when they are used, so the Dir.glob line "requires" all the files in the models directory. Once you have the models in an array, you can do what you were thinking (e.g. in view code):
|
|||||||
|
will return
|
|||
|
On one line: |
|||||||||
|
|
In just one line:
|
|||
|
|
|||
|
|
|
ActiveRecord::Base.connection.tables |
|||||
|
|
I think @hnovick's solution is a cool one if you dont have table-less models. This solution would work in development mode as well My approach is subtly different though -
classify is well supposed to give you the name of the class from a string properly. safe_constantize ensures that you can turn it into a class safely without throwing an exception. This is needed in case you have database tables which are not models. compact so that any nils in the enumeration are removed. |
|||||
|
|
I'd like to comment sj26's answer, which is the one I prefer as I'm working in development environment, but I can't because of my young reputation. I got what he meant but maybe there is a little mistake: as far as I know in development environment cache_classes is off (false) that's why you need to manually eager load the application to access all models. |
|||
|
|
|
can check this @models = ActiveRecord::Base.connection.tables.collect{|t| t.underscore.singularize.camelize} |
|||
|
|