Sha256: 022f3cf9bd5c69927a8374b0b5076d66faaabf52cc3d2c049c2935c1e4b9f757
Contents?: true
Size: 485 Bytes
Versions: 1
Compression:
Stored size: 485 Bytes
Contents
module Adauth # Holds all of adauth config in attr_accessor values class Config attr_accessor :domain, :port, :base, :server, :allowed_groups, :denied_groups # Creates a new instance of Adauth::Config # # Sets port, allowed_groups and denied_groups to default so they can be omitted from the config def initialize @port = 389 @allowed_groups = [] @denied_groups = [] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
adauth-1.0.1 | lib/adauth/config.rb |