method

dot_pat_str

v1_8_7_72 - Show latest stable - Class: ACL::ACLEntry
dot_pat_str(str)
private

No documentation available.

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