Sha256: 84dad2e96db2451003d1a6fe53a7269ee16fb3cf9d4f69653629791c6d994746
Contents?: true
Size: 849 Bytes
Versions: 1
Compression:
Stored size: 849 Bytes
Contents
# Devise Encryptable [](https://travis-ci.org/plataformatec/devise-encryptable) Use alternative (and even your own!) encryptors with Devise. ## Usage Add it to your Gemfile ```ruby gem "devise-encryptable" ``` Add the `encryptable` module to your model: ```ruby class User < ActiveRecord::Base devise :database_authenticatable, :encryptable end ``` And add the `password_salt` field to the database through a migration: ```ruby class DeviseCreateUsers < ActiveRecord::Migration def change add_column :users, :password_salt, :string end end ``` And you're ready to go! ## Contributing * Fork it * Write your changes * Commit * Send a pull request ## License Apache License version 2. Copyright 2012-2013 Plataformatec http://plataformatec.com.br
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
devise-encryptable-0.1.2 | README.md |