I ran into a previous question here: Delete link sends "Get" instead of "Delete" in Rails 3 view where the top rated answer states that you need the following code in your head section in order for link_to to function properly with a DELETE verb:
<%= javascript_include_tag :defaults %>
<%= csrf_meta_tag %>
From what I can tell my code is working fine without those headers. Are they necessary? I'm running rails 3.1.1. Using gems formtastic 2.0.2, devise 1.5.1, and the latest version of whenever. Thanks.