README.md in omniauth-identity-3.0.3 vs README.md in omniauth-identity-3.0.4
- old
+ new
@@ -83,10 +83,26 @@
# Anything else you want!
end
```
+### Sequel
+
+[Sequel](http://sequel.jeremyevans.net/) is an alternative to ActiveRecord.
+
+Just include `OmniAuth::Identity::Models::Sequel` mixin, and specify
+whatever else you will need.
+
+```ruby
+class SequelTestIdentity < Sequel::Model
+ include OmniAuth::Identity::Models::Sequel
+ auth_key :email
+ # whatever else you want!
+end
+```
+
+
### Mongoid
Include the `OmniAuth::Identity::Models::Mongoid` mixin and specify
fields that you will need.
@@ -101,11 +117,12 @@
end
```
### CouchPotato
-Include the `OmniAuth::Identity::Models::CouchPotatoModule` mixin and specify fields that you will need.
+Include the `OmniAuth::Identity::Models::CouchPotatoModule` mixin and specify
+fields that you will need.
```ruby
class Identity
include CouchPotato::Persistence
include OmniAuth::Identity::Models::CouchPotatoModule
@@ -123,10 +140,11 @@
### NoBrainer
[NoBrainer](http://nobrainer.io/) is an ORM for [RethinkDB](https://rethinkdb.com/).
-Include the `OmniAuth::Identity::Models::NoBrainer` mixin and specify fields that you will need.
+Include the `OmniAuth::Identity::Models::NoBrainer` mixin and specify
+fields that you will need.
```ruby
class Identity
include NoBrainer::Document
include OmniAuth::Identity::Models::NoBrainer