class PasswordChanger::Printers::Pretty
Public Instance Methods
output(users)
click to toggle source
# File lib/password_changer/printers/pretty.rb, line 5 def output(users) users.each do |user| PasswordChanger.logger.info "User \"#{user.name}\" has the following password \"#{user.new_password}\" now." end end