pivotal/LicenseFinder

View on GitHub
lib/license_finder/license/none_matcher.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module LicenseFinder
  class License
    class NoneMatcher
      def matches_text?(_text)
        false
      end
    end
  end
end