class AdLint::Postfilter::CsvMessageLine

Public Class Methods

new(str) click to toggle source
Calls superclass method AdLint::Postfilter::MessageLine::new
# File lib/adlint/postfilter/content.rb, line 115
def initialize(str)
  fields = CSV.parse(str).first
  super(str, fields.fetch(1), fields.fetch(2), fields.fetch(4))
end