class ConventionalChangelog::ByDateWriter

Private Instance Methods

build_new_lines(options) click to toggle source
# File lib/conventional_changelog/by_date_writer.rb, line 9
def build_new_lines(options)
  commits.group_by { |commit| commit[:date] }.sort.reverse_each do |date, commits|
    write_section commits, date
  end
end
filter_key() click to toggle source
# File lib/conventional_changelog/by_date_writer.rb, line 5
def filter_key
  :since_date
end
version_header_title(id) click to toggle source
# File lib/conventional_changelog/by_date_writer.rb, line 15
def version_header_title(id)
  id
end