README.md in voting-0.2.0 vs README.md in voting-0.3.0

- old
+ new

@@ -56,9 +56,22 @@ author_1.vote(resource, 1) # +1 vote author_2.vote(resource, -1) # -1 vote ``` +### status + +This mehod will return the status of a `Voting::Vote` object as `positive`, `negative` or `none`. + +```ruby +author = Author.first +resource = Comment.last + +author.vote(resource, 1).status # 'positive' +author.vote(resource, -1) # 'negative' +author.vote(resource, -1) # 'none' +``` + ### voting A voted resource exposes a cached data about it state: ```ruby