github-changelog-generator/lib/github_changelog_generator/generator.rb

34 lines
763 B
Ruby
Raw Normal View History

module GitHubChangelogGenerator
class Generator
2014-12-03 14:31:43 +00:00
def initialize(options = nil)
@options = options
end
def get_string_for_pull_request(pull_request)
2014-12-03 14:31:43 +00:00
encapsulated_title = self.encapsulate_string pull_request[:title]
2014-12-03 14:08:20 +00:00
2014-12-03 14:31:43 +00:00
merge = "#{@options[:merge_prefix]}#{encapsulated_title} [\\##{pull_request[:number]}](#{pull_request.html_url})"
if @options[:author]
merge += " ([#{pull_request.user.login}](#{pull_request.user.html_url}))\n\n"
else
merge += "\n\n"
end
merge
end
2014-12-03 14:31:43 +00:00
def encapsulate_string(string)
string.gsub! '\\', '\\\\'
encpas_chars = %w(> * _ \( \) [ ])
encpas_chars.each{ |char|
string.gsub! char, "\\#{char}"
}
string
end
end
2014-12-03 14:31:43 +00:00
end