2014-12-03 15:38:05 +02:00
|
|
|
module GitHubChangelogGenerator
|
|
|
|
class Generator
|
2014-12-03 16:31:43 +02:00
|
|
|
def initialize(options = nil)
|
2014-12-03 15:38:05 +02:00
|
|
|
@options = options
|
|
|
|
end
|
|
|
|
|
2015-03-27 17:15:08 +02:00
|
|
|
# Parse issue and generate single line formatted issue line.
|
|
|
|
#
|
|
|
|
# Example output:
|
|
|
|
# - Add coveralls integration [\#223](https://github.com/skywinder/github-changelog-generator/pull/223) ([skywinder](https://github.com/skywinder))
|
|
|
|
#
|
|
|
|
# @param [Hash] issue Fetched issue from GitHub
|
|
|
|
# @return [String] Markdown-formatted single issue
|
2015-02-25 19:02:41 +02:00
|
|
|
def get_string_for_issue(issue)
|
2015-03-26 15:43:47 +02:00
|
|
|
encapsulated_title = encapsulate_string issue[:title]
|
2015-02-25 19:02:41 +02:00
|
|
|
|
2015-02-27 14:53:21 +02:00
|
|
|
title_with_number = "#{encapsulated_title} [\\##{issue[:number]}](#{issue.html_url})"
|
|
|
|
|
2015-02-25 19:02:41 +02:00
|
|
|
unless issue.pull_request.nil?
|
|
|
|
if @options[:author]
|
|
|
|
if issue.user.nil?
|
2015-03-26 15:43:47 +02:00
|
|
|
title_with_number += ' ({Null user})'
|
2015-02-25 19:02:41 +02:00
|
|
|
else
|
2015-02-27 14:53:21 +02:00
|
|
|
title_with_number += " ([#{issue.user.login}](#{issue.user.html_url}))"
|
2015-02-25 19:02:41 +02:00
|
|
|
end
|
2014-12-15 15:54:11 +02:00
|
|
|
end
|
2014-12-03 15:38:05 +02:00
|
|
|
end
|
2015-02-27 14:53:21 +02:00
|
|
|
title_with_number
|
2014-12-03 15:38:05 +02:00
|
|
|
end
|
|
|
|
|
2014-12-03 16:31:43 +02:00
|
|
|
def encapsulate_string(string)
|
|
|
|
string.gsub! '\\', '\\\\'
|
|
|
|
|
2015-03-03 17:33:51 +02:00
|
|
|
encpas_chars = %w(> * _ \( \) [ ] #)
|
2015-03-26 15:43:47 +02:00
|
|
|
encpas_chars.each do |char|
|
2014-12-03 16:31:43 +02:00
|
|
|
string.gsub! char, "\\#{char}"
|
2015-03-26 15:43:47 +02:00
|
|
|
end
|
2014-12-03 16:31:43 +02:00
|
|
|
|
|
|
|
string
|
|
|
|
end
|
2014-12-03 15:38:05 +02:00
|
|
|
end
|
2015-03-26 15:43:47 +02:00
|
|
|
end
|