des rails
<% @authors.each do |author| %>
<%= author.id %>
<%= author.firstname %>
<%= link_to "Delete Ingredient", {:controller => :authors, :action => 'destroy', :id => author.id }, :method => :delete %>
<% end %>
Worried Weevil