1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
module WEBrick module HTTPAuth class Htgroup @path: String @mtime: Time @group: Hash[String, Array[String]] def initialize: (String path) -> void def reload: () -> void def flush: (?String? output) -> void def members: (String group) -> Array[String] def add: (String group, Array[String] members) -> void end end end