fix: fix help message

This commit is contained in:
Petr Korolev 2015-07-16 15:29:00 +03:00
parent e274f9992a
commit 68a045da22
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
# Offense count: 13
Metrics/AbcSize:
Max: 73
Enabled: false
# Offense count: 1
Metrics/CyclomaticComplexity:

View File

@ -95,7 +95,7 @@ module GitHubChangelogGenerator
opts.on("--[no-]compare-link", "Include compare link (Full Changelog) between older version and newer version. Default is true") do |v|
options[:compare_link] = v
end
opts.on("--include-labels x,y,z", Array, 'Only issues with the specified labels will be included in the changelog. Default is \'bug,enhancement\'') do |list|
opts.on("--include-labels x,y,z", Array, "Only issues with the specified labels will be included in the changelog.") do |list|
options[:include_labels] = list
end
opts.on("--exclude-labels x,y,z", Array, 'Issues with the specified labels will be always excluded from changelog. Default is \'duplicate,question,invalid,wontfix\'') do |list|