class HTMLProofer::Failure

Attributes

check_name[R]
content[R]
description[R]
line[R]
path[R]
status[R]

Public Class Methods

new(path, check_name, description, line: nil, status: nil, content: nil) click to toggle source
# File lib/html_proofer/failure.rb, line 7
def initialize(path, check_name, description, line: nil, status: nil, content: nil)
  @path = path
  @check_name = check_name
  @description = description

  @line = line
  @status = status
  @content = content
end