I've been looking into some rails admin plugins and came across these two:

https://github.com/gregbell/active_admin

https://github.com/sferik/rails_admin

Any suggestions as to which one to go with. I would need it to support model associations and file uploads abilities.

link|improve this question

53% accept rate
I have also tried both gems, but cost me a lot of work to customize them. I am now using admin_interface, try it, maybe it is you are looking for. – Benito Anagua Mar 14 at 12:27
RailsAdmin and ActiveAdmin serve different purposes - RailsAdmin is intended to provide an admin UI that usable out-of-the-box with little or no manual tweaking, whereas ActiveAdmin is more or less a scaffold (or a framework) for building admin interfaces. Generally you can build more flexible UIs with ActiveAdmin, but this require more effort on your part. My suggestion to Rails devs is always the same - try out RailsAdmin first and if it's not good enough for you develop a custom UI with AA - batsov.com/articles/2011/11/20/… – Bozhidar Batsov Mar 14 at 15:15
feedback

closed as not constructive by casperOne Mar 14 at 12:52

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

3 Answers

up vote 11 down vote accepted

I vote for rails_admin. I like its looks and the fact that out of the box all the models are available for administration. The history feature is quite useful too.

Any project with Yehuda Katz as a mentor should be a safe bet.

link|improve this answer
Are there some feature comparisons available somewhere? Looks and default behavior matter less to me than what it supports with not too much work... – Daniel Oct 31 '11 at 17:38
2  
@Daniel Usually I do not let the down-votes bother me. But this one I have to comment. In my view, the questioner was trying to get the communities opinion after narrowing the selection down to two choices. I didn't repeat the the feature list here as it can be found easily at Github. I am assuming the questioner agrees with my answer, otherwise he/she wouldn't have accepted the answer. If you want comparative analysis between the two gems, you can post that request as a question and somebody in the community will surely help. Down voting because you didn't get the correct depth is excessive. – KandadaBoggu Oct 31 '11 at 21:46
feedback

I think it's really a matter of personal preference. More people are using rails_admin[*], but I prefer active_admin.

The reasons I chose ActiveAdmin were predominantly that it was developed with assumptions that I would make myself: using gems like devise and inherited_resources, and using a nice form builder (formtastic, though I would have chosen simple_form).

I actually prefer that not all models are exposed to the admin by default, though rails_admin supports that with 'config.included_models'.

[*] Watches/forks on https://github.com/gregbell/active_admin vs https://github.com/sferik/rails_admin - though the gap is closing.

link|improve this answer
I don't like it exacly for that reason. It only works with old version of the gems: s.add_dependency("formtastic", "< 2.0.0") s.add_dependency("inherited_resources", "< 1.3.0") – montrealmike Oct 4 '11 at 13:34
That's no longer the case with Formtastic - see github.com/gregbell/active_admin/blob/master/… "formtastic", ">= 2.0.0" Inherited resources is still < 1.3.0, sadly. This probably isn't terribly difficult to change and make a pull request, though. – Michael Hellein Oct 17 '11 at 14:00
Oh, nice! ActiveAdmin is just about even with RailsAdmin on github. Watchers/forks: 2474/505 - 2767/557. – Michael Hellein Feb 8 at 18:49
feedback

I personally think the two could be merged, and have just raised the issue on both projects:

I think it would be great to take the best parts from both, and collaborate on the missing pieces.

link|improve this answer
1  
This is not a good idea at all. Those admins are serving different purposes. Did you try both of them for real projects? – Fro_oo Jan 20 at 10:57
feedback

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