README.markdown in acts_as_votable-0.6.0 vs README.markdown in acts_as_votable-0.7.0

- old
+ new

@@ -1,8 +1,8 @@ # Acts As Votable (aka Acts As Likeable) -![Build Status](https://travis-ci.org/ryanto/acts_as_votable.png?branch=master) +[![Build Status](https://travis-ci.org/ryanto/acts_as_votable.png)](https://travis-ci.org/ryanto/acts_as_votable) Acts As Votable is a Ruby Gem specifically written for Rails/ActiveRecord models. The main goals of this gem are: - Allow any model to be voted on, like/dislike, upvote/downvote, etc. @@ -11,16 +11,16 @@ they can come from any model (such as a Group or Team). - Provide an easy to write/read syntax. ## Installation -### Rails 3 or 4 +### Rails 3.0, 3.1, 3.2, and 4.0+ Just add the following to your Gemfile. ```ruby -gem 'acts_as_votable', '~> 0.6.0' +gem 'acts_as_votable', '~> 0.7.0' ``` And follow that up with a ``bundle install``. ### Database Migrations @@ -295,10 +295,20 @@ end ``` ## Testing -All tests follow the RSpec format and are located in the spec directory +All tests follow the RSpec format and are located in the spec directory. +They can be run with: + +``` +rake spec +``` + +## License + +Acts as votable is released under the [MIT +License](http://www.opensource.org/licenses/MIT). ## TODO - Pass in a block of options when creating acts_as. Allow for things like disabling the aliasing