Class: GherkinLint::Error

Inherits:
Issue
  • Object
show all
Defined in:
lib/gherkin_lint/issue.rb

Overview

entity value class for errors

Instance Attribute Summary

Attributes inherited from Issue

#description, #name, #references

Instance Method Summary collapse

Methods inherited from Issue

#initialize

Constructor Details

This class inherits a constructor from GherkinLint::Issue

Instance Method Details

#renderObject



18
19
20
21
22
23
# File 'lib/gherkin_lint/issue.rb', line 18

def render
  result = red(@name)
  result += " - #{@description}" unless @description.nil?
  result += "\n  " + green(@references.uniq * "\n  ")
  result
end