= private = protected
dot_pat(str)
Creates a Regexp to match an address.
# File lib/drb/acl.rb, line 84 def dot_pat(str) exp = "^" + dot_pat_str(str) + "$" Regexp.new(exp) end