Sha256: 1347f7c52797b5539396a5a7552e28300a4e2a6dda2082d4f147666e62c75c63
Contents?: true
Size: 333 Bytes
Versions: 15
Compression:
Stored size: 333 Bytes
Contents
module BulletTrain class Configuration include Singleton attr_accessor :strong_passwords @@config = nil def initialize @@config = self # Default values @strong_passwords = true end class << self def strong_passwords @@config&.strong_passwords end end end end
Version data entries
15 entries across 15 versions & 1 rubygems