Sha256: 205a9b069809e65f77c0681e170abe4dcab79cbc08223eee35182148e1edf500
Contents?: true
Size: 553 Bytes
Versions: 149
Compression:
Stored size: 553 Bytes
Contents
module CC module Analyzer module IssueValidations class Validation def initialize(object) @object = object end def valid? raise NotImplementedError end def message raise NotImplementedError end private attr_reader :object def path object.fetch("location", {})["path"] end def type object["type"] end def content object["content"] end end end end end
Version data entries
149 entries across 149 versions & 2 rubygems