I have build a user model using Michael Hartl tutorial. In his tutorial, he states the model is being built off of falsifying case sensitivity to allow users to login with the combination of: "foo@bar.com, Foo@bar.com, FOO@bar.com"
User Model
class User < ActiveRecord::Base
attr_accessible :name, :email
before_save { self.email.downcase! }
before_save :create_remember_token
validates :name, presence: true, length: { maximum: 50 }
VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
validates :email, presence: true,
format: { with: VALID_EMAIL_REGEX },
uniqueness: { case_sensitive: false }
validates :password, presence: true, length: { minimum: 6 }, :on => :create
validates :password_confirmation, presence: true
end
However when my user tries to login using "Foo@bar.com" it does not allow. They have to make the first letter lower case in order for it to authenticate.
Anyone know why case_sensitive false is not working?
TIA