Don't pass log as parameter

This commit is contained in:
tuexss 2015-03-26 23:08:23 +01:00
parent 808155ee3a
commit 57ef59d76c

View File

@ -417,9 +417,7 @@ module GitHubChangelogGenerator
github_site = options[:github_site] || 'https://github.com' github_site = options[:github_site] || 'https://github.com'
project_url = "#{github_site}/#{@options[:user]}/#{@options[:project]}" project_url = "#{github_site}/#{@options[:user]}/#{@options[:project]}"
log = '' log = generate_header(newer_tag_name, newer_tag_link, newer_tag_time, older_tag_name, project_url)
log += generate_header(log, newer_tag_name, newer_tag_link, newer_tag_time, older_tag_name, project_url)
if @options[:issues] if @options[:issues]
# Generate issues: # Generate issues:
@ -474,7 +472,9 @@ module GitHubChangelogGenerator
log log
end end
def generate_header(log, newer_tag_name, newer_tag_name2, newer_tag_time, older_tag_name, project_url) def generate_header(newer_tag_name, newer_tag_name2, newer_tag_time, older_tag_name, project_url)
log = ''
# Generate date string: # Generate date string:
time_string = newer_tag_time.strftime @options[:format] time_string = newer_tag_time.strftime @options[:format]