Class: CukeLinter::StepWithEndPeriodLinter

Inherits:
Linter
  • Object
show all
Defined in:
lib/cuke_linter/linters/step_with_end_period_linter.rb

Overview

A linter that detects steps that end in a period

Instance Attribute Summary

Attributes inherited from Linter

#name

Instance Method Summary collapse

Methods inherited from Linter

#initialize, #lint

Constructor Details

This class inherits a constructor from CukeLinter::Linter

Instance Method Details

#messageObject

The message used to describe the problem that has been found



14
15
16
# File 'lib/cuke_linter/linters/step_with_end_period_linter.rb', line 14

def message
  'Step ends with a period'
end

#rule(model) ⇒ Object

The rule used to determine if a model has a problem



7
8
9
10
11
# File 'lib/cuke_linter/linters/step_with_end_period_linter.rb', line 7

def rule(model)
  return false unless model.is_a?(CukeModeler::Step)

  model.text.end_with?('.')
end