Sha256: 8bede768b0b9333988717001847c5a49bf6b88086d78aa2b144692220ac1001b
Contents?: true
Size: 342 Bytes
Versions: 16
Compression:
Stored size: 342 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
16 entries across 16 versions & 3 rubygems