I noticed there wasn''t a plugins category to submitting a trac PATCH
ticket so hopefully it''s not off- topic to post a quick documentation
patch here.
The simply_restful README example gives delete as an generated action
when the plugin actually generates a destroy action.
README says:
class MessagesController < ActionController::Base
...
def delete
# delete a specific message
end
...
end
It should be:
class MessagesController < ActionController::Base
...
def destroy
# delete a specific message
end
...
end
Hope this helps,
Zack