Class: ACL::ACLList (Ruby 2.3.4)

ACL::ACLList

A list of ACLEntry objects. Used to implement the allow and deny halves of an ACL

Public Class Methods

new()

Creates an empty ACLList

 
               # File drb/acl.rb, line 123
def initialize
  @list = []
end
            

Public Instance Methods

add(str)

Adds str as an ACLEntry in this list

 
               # File drb/acl.rb, line 144
def add(str)
  @list.push(ACLEntry.new(str))
end
            
match(addr)

Matches addr against each ACLEntry in this list.

 
               # File drb/acl.rb, line 132
def match(addr)
  @list.each do |e|
    return true if e.match(addr)
  end
  false
end