Navigation Menu

Skip to content

Commit

Permalink
Add examples
Browse files Browse the repository at this point in the history
  • Loading branch information
bterkuile committed Oct 31, 2010
1 parent 42ba081 commit 42fe0e6
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions README
@@ -1,13 +1,32 @@
DeleteSoftly
============

Introduction goes here.

Add soft delete functionality to ActiveRecord models

Example
=======
class Post
delete_softly
end

Example goes here.
class Comment
delete_softly false
end

Now the following stuff works:
p1 = Post.create
p2 = Post.create
Post.count #=> 2
p2.destroy
Post.count #=> 1
Post.at(1.year.ago).count #=> 0

c1 = Comment.create
c2 = Comment.create
Comment.count #=> 2
c1.destroy
Comment.count #=> 2 (Since we added false)
Comment.active.count #=> 1


Copyright (c) 2010 [name of plugin creator], released under the MIT license
Copyright (c) 2010 [Benjamin ter Kuile], released under the MIT license

0 comments on commit 42fe0e6

Please sign in to comment.