class RegexpFilter

Public Instance Methods

to_regexp(*strings) click to toggle source
# File lib/mspec/runner/filters/regexp.rb, line 4
def to_regexp(*strings)
  strings.map { |str| Regexp.new str }
end