Измените posts_path
на post_path
:
<%= link_to 'Destroy', post_path(post), :confirm => 'Are you sure?', :method => :delete %>
или, что еще лучше,
<%= link_to 'Destroy', post, :confirm => 'Are you sure?', :method => :delete %>
Кроме того, для ссылки на другое действие добавьте для него маршрут, напримерresources :posts, :member => [:mycustomaction]
и по вашему мнению <%= link_to("foobar", mycustomaction_post_path(post) %>