class Spec::Matchers::SimpleMatcher

def matches?(given)

def matches?(given)
  @given = given
  case @match_block.arity
  when 2
    @match_block.call(@given, self)
  else
    @match_block.call(@given)
  end
end