Why does the following code work in Rails 3 rc2 but not in Rails 3?
<%= form_for :product, Product.new,
:url => products_path() do |f| %>
<%= f.text_field :name %>
<% end %>
I have formtastic installed but when I took it out I get the same result. I started this project before Rails3beta 1. Should I have changed something when rails initializes? I am a bit lost.
<%= form_tag products_path() do %>
<% end %>
Form tag works great though.
Thanks in advance, Dave