Sha256: f44a0ac4d77e63cfe894240915c9f7c7ff8b27c1280918fc06bf3abf8c341f49
Contents?: true
Size: 292 Bytes
Versions: 19
Compression:
Stored size: 292 Bytes
Contents
module CC module Analyzer class IssuePathPresenceValidation < Validation def valid? path.present? end def message "Path must be present" end private def path object.fetch("location", {})["path"] end end end end
Version data entries
19 entries across 19 versions & 1 rubygems