Sha256: e2dcee689107049b62f1390a7196e740e2095dc63a9994e7e0ac3709e34e541f
Contents?: true
Size: 341 Bytes
Versions: 6
Compression:
Stored size: 341 Bytes
Contents
module Csvlint class ErrorMessage attr_reader :type, :category, :row, :column, :content, :constraints def initialize(type, category, row, column, content, constraints) @type = type @category = category @row = row @column = column @content = content @constraints = constraints end end end
Version data entries
6 entries across 6 versions & 1 rubygems