method
dot_pat_str
dot_pat_str(str)
private
Hide source
# File lib/drb/acl.rb, line 28 def dot_pat_str(str) list = str.split('.').collect { |s| (s == '*') ? '.+' : s } list.join("\\.") end