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.
Having also tried typus, caseincms and ActiveScaffold over the weekend, I can't rave enough about admin_data. It is
Scaffolding is the normal way to create an admin backend BUT there is a project called ActiveScaffold which may solve your problem.
I can suggest you active_admin
that is best
Active Admin main site
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.
rails_admin appears to be the latest-n-greatest free project as of January 2011.
...best of all, there has been a lot of activity in the repository.
You have mainly two: