Merge branch 'master' into develop

This commit is contained in:
Petr Korolev 2015-06-12 09:39:03 +03:00
commit e114901157
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ module GitHubChangelogGenerator
def encapsulate_string(string)
string.gsub! '\\', '\\\\'
encpas_chars = %w(> * _ \( \) [ ] #)
encpas_chars = %w(< > * _ \( \) [ ] #)
encpas_chars.each do |char|
string.gsub! char, "\\#{char}"
end

View File

@ -41,8 +41,8 @@ module GitHubChangelogGenerator
threads << Thread.new { find_closed_date_by_commit(issue) }
end
threads.each(&:join)
puts "Fetching closed dates for issues: Done!" if @options[:verbose]
end
puts "Fetching closed dates for issues: Done!" if @options[:verbose]
end
# Fill :actual_date parameter of specified issue by closed date of the commit, if it was closed by commit.