I hadn\'t touched my code in a week, but when I bundled, then attempted to run my webserver I now get the following errors, which are leaving me dead in the water. Including th
I just had the same problem.
As written on the wiki of devise, you have to add this line in your Gemfile:
gem 'devise-encryptable'
From the wiki:
If you're using encryptable on your models, you will now have to include devise-encryptable on your gemfile.
https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.1
Regarding the warnings:
Remove the following from your devise.rb:
# Automatically apply schema changes in tableless databases
config.apply_schema = false
# If true, uses the password salt as remember token. This should be turned
# to false if you are not using database authenticatable.
config.use_salt_as_remember_token = true