vote up 7 vote down star
2

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?

flag

33% accept rate

7 Answers

vote up 5 vote down check

Scaffolding is the normal way to create an admin backend BUT there is a project called ActiveScaffold which may solve your problem.

link|flag
ActiveScaffold looks exactly like what I'm looking for. Thanks. – jcoby Sep 14 '08 at 20:06
Great, glad I could help. – Rob Bazinet Sep 14 '08 at 21:58
Beware using ActiveScaffold, the views are immensely complex, and there's problems with supporting the latest rails. – hoyhoy Sep 15 '08 at 9:49
vote up 0 vote down

ActiveScaffold is by far and away the most configurable/easiest to integrate/most automagic scaffolding around at the moment. It has built in ajax support, near seamless db introspection and it even plays nicely with legacy Oracle databases (which can be a real pain in Rails).

Try it: http://activescaffold.com/

link|flag
vote up 0 vote down

scaffold_resource has been replaced by just 'scaffold', fyi

link|flag
vote up 0 vote down

@Blaxter

I'm using Rails 2.1.1 with ActiveScaffold now with no problems at all. Granted, I'm not doing anything really difficult, but it seems to work fine. Maybe it's a Rails 2.1.0 problem?

link|flag
vote up 2 vote down

You have mainly two:

link|flag
vote up 0 vote down

The most common way to create a CRUD interface is to use Scaffold.

./script/generate scaffold_resource MyModel property:type property2:type2

This command would generate a CRUD interface for the model named MyModel (singular) with two properties. Properties is what's called columns in DB lingo. So you could have name:string age:integer active:boolean etc.

link|flag
vote up 1 vote down

Here is a post reviewing several Rails admin plugins.

link|flag

Your Answer

Get an OpenID
or

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