class Utils::Patterns::RegexpPattern

def initialize(opts = {})

def initialize(opts = {})
  super
  @matcher = Regexp.new(@pattern, @icase ? Regexp::IGNORECASE : 0)
end