Sha256: 8375242fd30358b1ff59a45942208e60fa1ab6a40d2fb418417d09657a8d7a3f
Contents?: true
Size: 248 Bytes
Versions: 11
Compression:
Stored size: 248 Bytes
Contents
module DRbQS module ACLFile # Create ACL object from file. # The example of file is the following: # deny all # allow localhost # allow 127.0.0.1 def self.load(path) ACL.new(File.read(path).split) end end end
Version data entries
11 entries across 11 versions & 1 rubygems