README.md in replication-0.1.2 vs README.md in replication-0.2.0

- old
+ new

@@ -48,9 +48,14 @@ extend Replication::Process can_replicate strand_class: WeirdStrandClass end ``` +You can whitelist an array of attributes. They'll be replicated in the new strand. +```ruby +can_replicate only: [:some_column, :other_column] +``` + You can blacklist an array of attributes. They'll not be replicated in the new strand. ```ruby can_replicate except: [:id, :name] ```