In Files

Parent

Methods

ACL::ACLList

Public Class Methods

new() click to toggle source
                
# File drb/acl.rb, line 63
def initialize
  @list = []
end

Public Instance Methods

add(str) click to toggle source
                
# File drb/acl.rb, line 76
def add(str)
  @list.push(ACLEntry.new(str))
end
match(addr) click to toggle source
                
# File drb/acl.rb, line 68
def match(addr)
  @list.each do |e|
    return true if e.match(addr)
  end
  false
end
blog comments powered by Disqus