…ahem, I am assuming here that you have an ‘edit’ and a ‘new’ view
and thus…
<% form_for Person %> /* new.rhtml /
<% form_for @person %> / in edit.rhtml */
If that is not the case in your apps, as it usally is in mine, then
ignore my suggestion; it would be of no help in your quest for a more
‘likeable idiom’
The thing is, what SimplyHelpful does is it lets you use only one form:
Resolved the simply helpful problem, if I have the line: @user =
User.create in the new method, I am able to use simply helpful
plugin without any problems.
Are you sure that’s a good idea? It may well be creating a lot of
empty entries in your database (if a user requests a form and then
doesn’t complete it). And even if that never happens, it will be
invoking any validations in your User model.
Whatever the conceptual rights or wrongs of using User.new in the new
method, it has a lot less performance implications than using create.