free_mutant/lib/mutant/matcher.rb
Markus Schirp 23a04009ce Use abstract support gem instead of homebrew
The support gem is better speced than the homebrew version ever was.
2012-08-03 01:28:15 +02:00

17 lines
244 B
Ruby

module Mutant
# Abstract matcher to find ASTs to mutate
class Matcher
include Enumerable, Abstract
# Enumerate subjects
#
# @api private
#
# @return [undefined]
#
abstract_method :each
private
end
end