README.textile in jchupp-is_paranoid-0.0.1 vs README.textile in jchupp-is_paranoid-0.0.2
- old
+ new
@@ -35,27 +35,27 @@
that_large_automobile = Automobile.create()
Automobile.count # => 1
that_large_automobile.destroy
Automobile.count # => 0
- Automobile.count_with_deleted # => 1
+ Automobile.count_with_destroyed # => 1
# where is that large automobile?
- that_large_automobile = Automobile.find_with_deleted(:all).first
+ that_large_automobile = Automobile.find_with_destroyed(:all).first
that_large_automobile.restore
Automobile.count # => 1
</pre>
One thing to note, destroying is always undo-able, but deleting is not.
<pre>
Automobile.destroy_all
Automobile.count # => 0
- Automobile.count_with_deleted # => 1
+ Automobile.count_with_destroyed # => 1
Automobile.delete_all
- Automobile.count_with_deleted # => 0
- # And you may tell yourself, "My god! What have I done?"
+ Automobile.count_with_destroyed # => 0
+ # And you may say to yourself, "My god! What have I done?"
</pre>
h3. and you may ask yourself, where does that highway go to?
If you find any bugs, have any ideas of features you think are missing, or find things you're like to see work differently, feel free to send me a message or a pull request.
\ No newline at end of file