method
new
v1_8_7_330 -
Show latest stable
- Class:
ACL
new(list=nil, order = DENY_ALLOW)public
No documentation available.
# File lib/drb/acl.rb, line 84
def initialize(list=nil, order = DENY_ALLOW)
@order = order
@deny = ACLList.new
@allow = ACLList.new
install_list(list) if list
end