This commit is contained in:
Petr Korolev 2015-05-18 12:00:08 +03:00
parent c67cbb31f2
commit 0ff48a3dba

View File

@ -14,14 +14,15 @@ module GitHubChangelogGenerator
def initialize(options = {})
@options = options
@logger = Logger.new(STDOUT)
@logger.formatter = proc do |_severity, _datetime, _progname, msg|
"#{msg}\n"
@user = @options[:user]
@project = @options[:project]
@github_token = fetch_github_token
@tag_times_hash = {}
@logger = Logger.new(STDOUT)
@logger.formatter = proc do |_severity, _datetime, _progname, msg|
"#{msg}\n"
end
github_options = { per_page: PER_PAGE_NUMBER }
github_options[:oauth_token] = @github_token unless @github_token.nil?