Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
If you need to collect all models including models of Rails engines/railties, see the answer by @jaime – Andrei Feb 18 '11 at 11:21

13 Answers

up vote 55 down vote accepted

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...

Dir.foreach("#{RAILS_ROOT}/app/models") do |model_path|
  # ...
end

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

Module.constants.select { |c| (eval c).is_a? Class }

EDIT: Finally succeeded in listing all models without looking at directories

Module.constants.select do |constant_name|
  constant = eval constant_name
  if not constant.nil? and constant.is_a? Class and constant.superclass == ActiveRecord::Base
    constant
  end
end

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:

class Class
  def extend?(klass)
    not superclass.nil? and ( superclass == klass or superclass.extend? klass )
  end
end

def models 
  Module.constants.select do |constant_name|
    constant = eval constant_name
    if not constant.nil? and constant.is_a? Class and constant.extend? ActiveRecord::Base
    constant
    end
  end
end
share|improve this answer
Funnily enough, I went the other way round on this! I started looking at reflections but couldn't figure out how to get the list of classes either! Just after I posted I had a headslap moment and went off to look at Dir. Thanks for the answer. Much appreciated. – mr_urf Feb 5 '09 at 16:24
Wow! Kudos earned and then some! Thanks for this, I went with the Dir suggestion and ended up having to scan, strip and capitalize! the resulting file name. However I think that your solution is much more elegant so I'll use this instead. If I could vote you up again, I would! :) – mr_urf Feb 6 '09 at 9:53
2  
FYI, I timed both methods just for fun. Looking up the directories is an order of magnitude faster than searching though the classes. That was probably obvious, but now you know :) – nilbus Jun 12 '10 at 14:25
3  
Also, it's important to note that searching for models via the constants methods will not include anything that hasn't been referenced since the app started, since it only loads the models on demand. – nilbus Jun 12 '10 at 14:27
2  
I prefer 'Kernel.const_get constant_name' to 'eval constant_name'. – Jeremy Weathers Nov 27 '10 at 18:48
show 4 more comments

Just in case anyone stumbles on this one, I've got another solution, not relying on dir reading or extending the Class class...

ActiveRecord::Base.send :subclasses

This will return an array of classes. So you can then do

ActiveRecord::Base.send(:subclasses).each do |model|
  puts model.name
end
share|improve this answer
4  
why don't you use ActiveRecord::Base.subclasses but have to use send? Also, it seems like you have to "touch" the model before it will show up, for example c = Category.new and it will show up. Otherwise, it won't. – 動靜能量 Sep 6 '10 at 15:12
35  
In Rails 3, this has been changed to ActiveRecord::Base.descendants – Tobias Cohen Feb 16 '11 at 4:19
2  
You have to use "send" because the :subclasses member is protected. – Kevin Rood Apr 1 '11 at 18:53
6  
Thanks for the Rails 3 tip. For anyone else who comes along, you still need to "touch" the models before ActiveRecord::Base.descendants will list them. – nfm Jul 3 '11 at 1:18
2  
Technically in Rails 3 you have subclasses and descendants, they mean different things. – sj26 May 17 '12 at 5:03
show 4 more comments

The whole answer for current Rails 3 is:

If cache_classes is on (by default it's on in development, not in production):

Rails.application.eager_load!

Then:

ActiveRecord::Base.descendants

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.

share|improve this answer
8  
Awesome! This should be the accepted answer. For anybody using this in a rake task: Make your task depend on :environment for the eager_load! to work. – Jo Liss Aug 17 '12 at 21:06
Or, as a slightly faster alternative to Rails.application.eager_load!, you can just load the models: Dir.glob(Rails.root.join('app/models/*')).each do |x| require x end – Ajedi32 Aug 29 '12 at 18:54
I agree with Jo Liss: this should be the top answer! 2 lines instead of 14 is 7 times more awesome. – Joe Goggins Sep 20 '12 at 15:18
@Ajedi32 that is not complete, models can be defined outside those directories, especially when using engines with models. Slightly better, at least glob all Rails.paths["app/models"].existent directories. Eager loading the whole application is a more complete answer and will make sure there is absolutely nowhere left for models to be defined. – sj26 Nov 30 '12 at 3:46
Definitely the Rails 3 answer :] Great job. – rcd Mar 14 at 3:24
show 1 more comment

I looked for ways to do this and ended up choosing this way:

in the controller:
    @data_tables = ActiveRecord::Base.connection.tables

in the view:
  <% @data_tables.each do |dt|  %>
  <br>
  <%= dt %>
  <% end %>
  <br>

source: http://portfo.li/rails/348561-how-can-one-list-all-database-tables-from-one-project

share|improve this answer
This is the only way I can get ALL models, including models of Rails engines used in the app. Thanks for the tip! – Andrei Feb 18 '11 at 11:18
2  
A few useful methods: ActiveRecord::Base.connection.tables.each{|t| begin puts "%s: %d" % [t.humanize, t.classify.constantize.count] rescue nil end} Some of the models may be not activated therefore you need to rescue it. – Andrei Feb 18 '11 at 11:47
1  
Adapting @Andrei's a bit: model_classes = ActiveRecord::Base.connection.tables.collect{|t| t.classify.constantize rescue nil }.compact – Max Williams Jun 17 '11 at 9:59
1  
This will not work for Single Table Inheritance. – JosephJaber Nov 1 '11 at 21:51

This seems to work for me:

  Dir.glob(RAILS_ROOT + '/app/models/*.rb').each { |file| require file }
  @models = Object.subclasses_of(ActiveRecord::Base)

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):

<% @models.each do |v| %>
  <li><%= h v.to_s %></li>
<% end %>
share|improve this answer
Thanks bhousel. I originally went with this style of approach but ended up using the solution that Vincent posted above as it meant that I didn't have to "Modelize" the file name as well (i.e. strip out any _, capitalize! each word and then join them again). – mr_urf Feb 7 '09 at 14:03
with subdirectories: ...'/app/models/**/*.rb' – artemave Mar 16 '11 at 10:30
Object.subclasses_of is deprecated after v2.3.8. – David James Jul 25 '12 at 15:55
ActiveRecord::Base.connection.tables.map do |model|
  model.capitalize.singularize.camelize
end

will return

["Article", "MenuItem", "Post", "ZebraStripePerson"] 
share|improve this answer
1  
This will get you all the tables though, not just the models, since some tables don't always have associated models. – CourtS Mar 29 '12 at 21:25
1  
That's a great point; thanks. – lightyrs Mar 30 '12 at 1:15

On one line: Dir['app/models/\*.rb'].map {|f| File.basename(f, '.*').camelize.constantize }

share|improve this answer
5  
This one is nice since, in Rails 3, your models aren't auto-loaded by default, so many of the above methods won't return all possible models. My permutation also captures models in plugins and subdirectories: Dir['**/models/**/*.rb'].map {|f| File.basename(f, '.*').camelize.constantize } – wbharding Feb 25 '11 at 19:12
1  
@wbharding That's pretty nice, but it errors out when it tries to constantize the names of my rspec model tests. ;-) – Ajedi32 Aug 29 '12 at 19:11

In just one line:

 ActiveRecord::Base.subclasses.map(&:name)
share|improve this answer
That doesn't show all the models for me. Not sure why. It's a couple short, in fact. – CourtS Apr 15 at 23:20
Module.constants.select { |c| (eval c).is_a?(Class) && (eval c) < ActiveRecord::Base }
share|improve this answer

ActiveRecord::Base.connection.tables

share|improve this answer
Also a nice followup is <table_name>.column_names to list all columns in the table. So for your user table you would execute User.column_names – Lumbee Aug 13 '12 at 12:35
This will get you all the tables though, not just the models, since some tables don't always have associated models. – CourtS Apr 15 at 23:20

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 -

ActiveRecord::Base.connection.tables.map{|x|x.classify.safe_constantize}.compact

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.

share|improve this answer
1  
That's awesome @Aditya Sanghi. I didn't know about safe_constantize. – lightyrs Sep 18 '12 at 2:28

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.

share|improve this answer

can check this

@models = ActiveRecord::Base.connection.tables.collect{|t| t.underscore.singularize.camelize}

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.