Method: EasyChangelog::Entry#content

Defined in:
lib/easy_changelog/entry.rb

#contentObject



29
30
31
32
33
34
35
36
# File 'lib/easy_changelog/entry.rb', line 29

def content
  title = body.dup
  title += '.' unless title.end_with? '.'

  options = { ref: ref, card_ref: card_ref, title: title, username: user }

  format(EasyChangelog.configuration.entry_row_template, options)
end