In my grid this,
link_to('Edit', edit_manage_user_path(user.id))
works fine but this,
link_to('Delete', delete_manage_user_path(user.id))
gives the error "undefined method `delete_manage_user_path' for #<#:0xc05439c>" given that there is a delete action in my controller..
Any idea why this error is coming?

method: :deleteto thelink_to. Together with that, you can add a confirm step since the deletion isn't reverted, hence the code looks likelink_to 'Delete', manage_user_path(user), method: :delete, data: { confirm: "Are you sure to delete?" }.