Skip to content
This repository was archived by the owner on Jan 15, 2023. It is now read-only.

Commit

Permalink
Updated readme [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Jun 12, 2022
1 parent df0a18a commit 834b95a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Track Devise login activity
Add this line to your application’s Gemfile:

```ruby
gem 'authtrail'
gem "authtrail"
```

To encrypt email and IP addresses with Lockbox, install [Lockbox](https://github.com/ankane/lockbox) and [Blind Index](https://github.com/ankane/blind_index) and run:
Expand Down Expand Up @@ -118,7 +118,7 @@ AuthTrail uses [Geocoder](https://github.com/alexreisner/geocoder) for geocoding
To enable geocoding, add this line to your application’s Gemfile:

```ruby
gem 'geocoder'
gem "geocoder"
```

And update `config/initializers/authtrail.rb`:
Expand All @@ -138,7 +138,7 @@ AuthTrail.job_queue = :low_priority
For privacy and performance, we recommend geocoding locally. Add this line to your application’s Gemfile:

```ruby
gem 'maxminddb'
gem "maxminddb"
```

For city-level geocoding, download the [GeoLite2 City database](https://dev.maxmind.com/geoip/geoip2/geolite2/) and create `config/initializers/geocoder.rb` with:
Expand Down Expand Up @@ -221,7 +221,7 @@ There are two notable changes to geocoding:
2. The `geocoder` gem is now an optional dependency. To use geocoding, add it to your Gemfile:

```ruby
gem 'geocoder'
gem "geocoder"
```

### 0.2.0
Expand Down

0 comments on commit 834b95a

Please sign in to comment.