Module: PuppetStrings::Yard::Handlers::Helpers

Defined in:
lib/puppet-strings/yard/handlers/helpers.rb

Overview

Implements a helper that logs a warning if a summary tag has more than 140 characters

Class Method Summary collapse

Class Method Details

.validate_summary_tag(object) ⇒ Object



5
6
7
8
9
# File 'lib/puppet-strings/yard/handlers/helpers.rb', line 5

def self.validate_summary_tag(object)
  return unless object.has_tag?(:summary) && object.tag(:summary).text.length > 140

  log.warn "The length of the summary for #{object.type} '#{object.name}' exceeds the recommended limit of 140 characters."
end