Sha256: f846715945d36b0721681b1b531a27100338771675b00782d29a6dd65cc873df
Contents?: true
Size: 875 Bytes
Versions: 16
Compression:
Stored size: 875 Bytes
Contents
module Mutant class Matcher # Matcher for specific namespace # # rubocop:disable LineLength class Namespace < self include Concord::Public.new(:env, :expression) # Enumerate subjects # # @return [self] # if block given # # @return [Enumerator<Subject>] # otherwise # # @api private # def each(&block) return to_enum unless block_given? env.matchable_scopes.select do |scope| scope.each(&block) if match?(scope) end self end private # Test scope if name matches expression # # @param [Module, Class] scope # # @return [Boolean] # # @api private # def match?(scope) expression.prefix?(scope.expression) end end # Namespace end # Matcher end # Mutant
Version data entries
16 entries across 16 versions & 1 rubygems