README.md in crypt_keeper-0.1.0 vs README.md in crypt_keeper-0.2.0
- old
+ new
@@ -33,11 +33,11 @@
model = MyModel.new(field: 'sometext')
model.save! #=> Your data is now encrypted
model.field #=> 'sometext'
```
-It works with all persistences methods: `update_attribute`, `update_attributes`,
-and save.
+It works with all persistences methods: `update_attribute`, `update_attributes`,
+`create`, `save` etc.
## Creating your own encryptor
Creating your own encryptor is easy. All you have to do is create a class
under the `CryptKeeperProviders` namespace, like this: