Skip to content

Instantly share code, notes, and snippets.

@spalladino
Created August 3, 2011 13:46
Show Gist options
  • Save spalladino/1122673 to your computer and use it in GitHub Desktop.
Save spalladino/1122673 to your computer and use it in GitHub Desktop.
Disable password hashing in devise for testing
module Devise
module Models
module DatabaseAuthenticatable
protected
def password_digest(password)
password
end
end
end
end
Devise.setup do |config|
config.stretches = 0
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment