README.md in sequel_password-0.1.1 vs README.md in sequel_password-0.2.0
- old
+ new
@@ -2,5 +2,11 @@
This sequel plugin adds authentication and password hashing to Sequel models.
It supports pbkdf2 and bcrypt hashers.
# Usage
+
+```ruby
+class User < Sequel::Model
+ plugin :password, column: :password
+end
+```