module Danger::Changelog

Public Class Methods

config() click to toggle source
# File lib/changelog/config.rb, line 66
def config
  Config
end
configure() { |Config| ... } click to toggle source
# File lib/changelog/config.rb, line 61
def configure
  warn '[DEPRECATION] `configure` is deprecated. Please directly configure the Danger plugin via `changelog.xyz=` instead.'
  block_given? ? yield(Config) : Config
end