From f12244b6d7111ccc5c309d6ce75c5cdb861edc1b Mon Sep 17 00:00:00 2001 From: Francesco Rodriguez Date: Thu, 18 Oct 2012 01:22:55 -0500 Subject: [PATCH] remove non-breaking spaces [ci skip] --- activemodel/lib/active_model/secure_password.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/activemodel/lib/active_model/secure_password.rb b/activemodel/lib/active_model/secure_password.rb index d011402081..4b328b399a 100644 --- a/activemodel/lib/active_model/secure_password.rb +++ b/activemodel/lib/active_model/secure_password.rb @@ -44,7 +44,7 @@ def has_secure_password(options = {}) if options.fetch(:validations, true) validates_confirmation_of :password validates_presence_of :password, :on => :create - + before_create { raise "Password digest missing on new record" if password_digest.blank? } end @@ -68,7 +68,7 @@ module InstanceMethodsOnActivation # user = User.new(name: 'david', password: 'mUc3m00RsqyRe') # user.save # user.authenticate('notright') # => false - #  user.authenticate('mUc3m00RsqyRe') # => user + # user.authenticate('mUc3m00RsqyRe') # => user def authenticate(unencrypted_password) BCrypt::Password.new(password_digest) == unencrypted_password && self end @@ -84,7 +84,7 @@ def authenticate(unencrypted_password) # user.password = nil # user.password_digest # => nil # user.password = 'mUc3m00RsqyRe' - # user.password_digest # => "$2a$10$4LEA7r4YmNHtvlAvHhsYAeZmk/xeUVtMTYqwIvYY76EW5GUqDiP4." + # user.password_digest # => "$2a$10$4LEA7r4YmNHtvlAvHhsYAeZmk/xeUVtMTYqwIvYY76EW5GUqDiP4." def password=(unencrypted_password) unless unencrypted_password.blank? @password = unencrypted_password -- GitLab