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

Version Path
mutant-0.3.0.beta21 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta20 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta19 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta18 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta17 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta16 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta15 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta14 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta13 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta12 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta11 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta10 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta9 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta8 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta7 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta6 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta5 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta4 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta3 lib/mutant/cli/classifier/scope.rb
mutant-0.3.0.beta2 lib/mutant/cli/classifier/scope.rb