Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a good admin generator for Ruby on Rails?

My current project is in Rails. Coming from a Symfony (PHP) and Django (Python) background, they both have excellent admin generators. Seems like this is missing in Rails.

For those who aren't familiar with Symfony or Django, they both allow you to specify some metadata around your models to automatically (dynamically) generate an admin interface to do the common CRUD operations. You can create an entire Intranet with only a few commands or lines of code. They have a good appearance and are extensible enough for 99% of your admin needs.

I've looked for something similar for Rails, but all of the projects either have no activity or they died long ago. Is there anything to generate an intranet/admin site for a rails app other than scaffolding?

like image 538
jcoby Avatar asked Sep 14 '08 14:09

jcoby


People also ask

What is Rails_ admin?

rails_admin. RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data.

What is active admin?

Active Admin is a Ruby on Rails plugin for generating administration style interfaces. It abstracts common business application patterns to make it simple for developers to implement beautiful and elegant interfaces with very little effort.


1 Answers

Active Admin (http://activeadmin.info/) was released in May of 2011, and looks like it's going to become the best Rails 3 option.

features

like image 95
zambezi Avatar answered Oct 10 '22 12:10

zambezi