= private = protected
The exact documentation you were looking for could not be found. Here is the best guess.
dot_pat(str)
Creates a Regexp to match an address.
# File lib/drb/acl.rb, line 83 def dot_pat(str) exp = "^" + dot_pat_str(str) + "$" Regexp.new(exp) end