Ruby/Ruby On Rails/Tips のバックアップ(No.2)


Ruby On Rails - Tips

DEPRECATION WARNING: end_form_tag

It means you should replace this:

1. <%= start_form_tag ... %>
2. ...
3. <%= end_form_tag %> 

With this:

1. <% form_tag ... do %>
2. ...
3. <% end %>