Sha256: bc9466cf1f8484eff1035b646304f145c79baa397024917092a671de55e6b371

Contents?: true

Size: 288 Bytes

Versions: 2

Compression:

Stored size: 288 Bytes

Contents

# encoding: utf-8
module PasswordChanger
  module Printers
    class Pretty
      def output(users)
        users.each do |user|
          PasswordChanger.logger.info "User \"#{user.name}\" has the following password \"#{user.new_password}\" now."
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
password_changer-0.0.4 lib/password_changer/printers/pretty.rb
password_changer-0.0.3 lib/password_changer/printers/pretty.rb