document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.     def destroy
  2.     @post = Post.find(params[:id])
  3.     @post.destroy
  4.     redirect_to posts_path, :notice => "Tu post se ha Borrado"
  5.     end
  6. end
');