ScaffoldForm Generator
I’m happy to announce the release of the ScafoldForm Generator plugin for Rails. This plugin takes the most useful piece of scaffolding, the form creation, ad makes it available as a separate generator.
You can install it with
sudo gem install scaffold_form_generator
Then just generate the forms for your models
ruby script/generate scaffold_form Project project ruby script/generate scaffold_form User accounts
You can read more at http://scaffoldform.rubyforge.org/
.
There are a few neat tweaks I made to it to make the forms a bit more useful.

Hi,
After:
ruby script/generate Plan plans
Got error message:
Couldn’t find ‘plan’ generator
Any sugestions?:
euro
@euro:
You didn’t specify the generator.
ruby script/generate scaffold_form Plan plans
[...] If you’ve used the resource generator and now want the scaffolded views as well, you’re in luck: Brian Hogan has released a gem to do just that for you. [...]
[...] If you’ve used the resource generator and now want the scaffolded views as well, you’re in luck: Brian Hogan has released a gem to do just that for you. [...]