class Codelog::Message::Warning

Public Class Methods

delete_existing_changelog?() click to toggle source
# File lib/codelog/message.rb, line 57
def delete_existing_changelog?
  "#{prefix}: When generating a release for the first " \
  'time, CHANGELOG.md will be erased. Do you wish to erase it now? (Y/N)'
end
maintain_versioning_of_existing_changelog?() click to toggle source
# File lib/codelog/message.rb, line 52
def maintain_versioning_of_existing_changelog?
  "#{prefix}: There is already a file named CHANGELOG.md within " \
  'your project. Do you wish to maintain its versioning? (Y/N)'
end
prefix() click to toggle source
# File lib/codelog/message.rb, line 48
def prefix
  'WARNING'
end