README.md in blind_index-2.3.0 vs README.md in blind_index-2.3.1
- old
+ new
@@ -21,15 +21,15 @@
## Installation
Add this line to your application’s Gemfile:
```ruby
-gem 'blind_index'
+gem "blind_index"
```
## Prep
-Your model should already be set up with Lockbox or attr_encrypted. The examples are for a `User` model with `encrypts :email` or `attr_encrypted :email`. See the full examples for [Lockbox](https://ankane.org/securing-user-emails-lockbox) and [attr_encrypted](https://ankane.org/securing-user-emails-in-rails) if needed.
+Your model should already be set up with Lockbox or attr_encrypted. The examples are for a `User` model with `has_encrypted :email` or `attr_encrypted :email`. See the full examples for [Lockbox](https://ankane.org/securing-user-emails-lockbox) and [attr_encrypted](https://ankane.org/securing-user-emails-in-rails) if needed.
Also, if you use attr_encrypted, [generate a key](#key-generation).
## Getting Started