Sha256: b5bd050bfad5fce571dbd29799e355d21e392b294658ec89ffcbc74326e0617a
Contents?: true
Size: 602 Bytes
Versions: 20
Compression:
Stored size: 602 Bytes
Contents
module Mutant class CLI class Classifier # Scope classifier class Scope < self REGEXP = %r(\A(#{SCOPE_PATTERN})\z).freeze private # Return matcher # # @return [Matcher] # # @api private # def matcher Matcher::Scope.new(scope) end # Return namespace # # @return [Class, Module] # # @api private # def scope Classifier.constant_lookup(match[1].to_s) end end # Scope end # Classifier end # CLI end # Mutant
Version data entries
20 entries across 20 versions & 1 rubygems