Sha256: a20feb627a8bca5b36fab3034e3f0e277f88174f2344be38364fe5f3f5c69449
Contents?: true
Size: 317 Bytes
Versions: 19
Compression:
Stored size: 317 Bytes
Contents
module CC module Analyzer class IssuePathExistenceValidation < Validation def valid? File.exist?(path) end def message "File does not exist: '#{path}'" end private def path object.fetch("location", {}).fetch("path", "") end end end end
Version data entries
19 entries across 19 versions & 1 rubygems