Link up Railscast.

This commit is contained in:
Andy Stewart 2011-03-01 10:50:35 +00:00
parent a530dbb729
commit 559eb91de6
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
PaperTrail lets you track changes to your models' data. It's good for auditing or versioning. You can see how a model looked at any stage in its lifecycle, revert it to any version, and even undelete it after it's been destroyed.
There's an excellent [Railscast on implementing Undo with Paper Trail](http://railscasts.com/episodes/255-undo-with-paper-trail).
## Features
@ -225,7 +226,7 @@ Undeleting is just as simple:
>> widget = Version.find(153).reify # the widget as it was before it was destroyed
>> widget.save # the widget lives!
In fact you could use PaperTrail to implement an undo system, though I haven't had the opportunity yet to do it myself.
In fact you could use PaperTrail to implement an undo system, though I haven't had the opportunity yet to do it myself. However [Ryan Bates has](http://railscasts.com/episodes/255-undo-with-paper-trail)!
## Navigating Versions