Merge branch 'develop' into add-tests

This commit is contained in:
Petr Korolev 2015-05-18 12:00:31 +03:00
commit 583076f32c

View File

@ -15,14 +15,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?