Index: lib/simply_restful/routes.rb
===================================================================
--- lib/simply_restful/routes.rb	(revision 4610)
+++ lib/simply_restful/routes.rb	(working copy)
@@ -2,7 +2,8 @@
   module Routes
     def resource(entity, options={})
       plural = entity.to_s.pluralize
-
+      singular = plural.singularize
+      
       collection  = options.delete(:collection) || {}
       member      = options.delete(:member) || {}
       new         = options.delete(:new) || true
@@ -43,6 +44,9 @@
 
         map.named_route("#{name_prefix}#{plural}", collection_path, :action => "index", :conditions => { :method => :get })
         map.named_route("formatted_#{name_prefix}#{plural}", "#{collection_path}.:format", :action => "index", :conditions => { :method => :get })
+        
+        map.named_route("#{name_prefix}destroy_#{singular}", member_path, :action => "destroy", :conditions => { :method => :delete })
+        map.named_route("formatted_#{name_prefix}destroy_#{singular}", "#{member_path}.:format", :action => "delete", :conditions => { :method => :delete })
 
         new_methods.each do |method, list|
           route_options = requirements_for(method)
