class Kaname::Generator
Public Class Methods
Source
# File lib/kaname/generator.rb, line 14 def password SecureRandom.base64(@password_length) end
Source
# File lib/kaname/generator.rb, line 6 def password_length @password_length ||= 14 end
Source
# File lib/kaname/generator.rb, line 10 def password_length=(length) @password_length = length end