lib/devise/models/database_authenticatable.rb in devise-4.3.0 vs lib/devise/models/database_authenticatable.rb in devise-4.4.0

- old
+ new

@@ -1,5 +1,7 @@ +# frozen_string_literal: true + require 'devise/strategies/database_authenticatable' module Devise module Models # Authenticatable Module, responsible for hashing the password and @@ -8,10 +10,10 @@ # == Options # # DatabaseAuthenticatable adds the following options to devise_for: # # * +pepper+: a random string used to provide a more secure hash. Use - # `rake secret` to generate new keys. + # `rails secret` to generate new keys. # # * +stretches+: the cost given to bcrypt. # # * +send_email_changed_notification+: notify original email when it changes. #