Sha256: fcf44d39cc743d0cd95d370d2dfdba5ed2c902599aa8c6c0d1a7ed824c068da5
Contents?: true
Size: 271 Bytes
Versions: 149
Compression:
Stored size: 271 Bytes
Contents
module CC module Analyzer module IssueValidations class PathIsFileValidation < Validation def valid? path && File.file?(path) end def message "Path is not a file: '#{path}'" end end end end end
Version data entries
149 entries across 149 versions & 2 rubygems