On my development machine I can login fine, but once on production, authentication fails for the base user created in the migration.
I can reset my password and upon doing so I am auto logged in, but when I logout and try to login again using the newly entered password, once again it tells my I have a bad email and/or password.
Any ideas to why this would be?
=== Update
class User < ActiveRecord::Base
# default devise modules
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
...
end