README.md in acts_as_votable-0.12.0 vs README.md in acts_as_votable-0.12.1

- old
+ new

@@ -1,9 +1,9 @@ # Acts As Votable (aka Acts As Likeable) [![Build Status](https://travis-ci.org/ryanto/acts_as_votable.svg?branch=master)](https://travis-ci.org/ryanto/acts_as_votable) -[![Code Climate](https://codeclimate.com/github/ryanto/acts_as_votable.png)](https://codeclimate.com/github/ryanto/acts_as_votable) +[![Code Climate](https://codeclimate.com/github/ryanto/acts_as_votable.svg)](https://codeclimate.com/github/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. @@ -363,10 +363,10 @@ ## updated_at at Votable model You can control whether `updated_at` column of votable model will be touched or not by passing `cacheable_strategy` option to `acts_as_votable` method. -By default, `update_attributes` strategy is used. Pass `:update_columns` as +By default, `update` strategy is used. Pass `:update_columns` as `cacheable_strategy` if you don't want to touch model's `updated_at` column. ```ruby class Post < ActiveRecord::Base acts_as_votable cacheable_strategy: :update_columns end