Linting
This commit is contained in:
parent
14c36317f1
commit
faf2ddd552
|
@ -24,11 +24,11 @@ Gem::Specification.new do |spec|
|
||||||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
||||||
spec.require_paths = ["lib"]
|
spec.require_paths = ["lib"]
|
||||||
|
|
||||||
spec.add_runtime_dependency "rake", ">= 10.0"
|
|
||||||
spec.add_runtime_dependency "rainbow", ">= 2.2.1"
|
|
||||||
spec.add_runtime_dependency("octokit", ["~> 4.6"])
|
|
||||||
spec.add_runtime_dependency("faraday-http-cache")
|
|
||||||
spec.add_runtime_dependency("activesupport")
|
spec.add_runtime_dependency("activesupport")
|
||||||
spec.add_runtime_dependency("retriable", ["~> 3.0"])
|
spec.add_runtime_dependency("faraday-http-cache")
|
||||||
spec.add_runtime_dependency("multi_json")
|
spec.add_runtime_dependency("multi_json")
|
||||||
|
spec.add_runtime_dependency("octokit", ["~> 4.6"])
|
||||||
|
spec.add_runtime_dependency "rainbow", ">= 2.2.1"
|
||||||
|
spec.add_runtime_dependency "rake", ">= 10.0"
|
||||||
|
spec.add_runtime_dependency("retriable", ["~> 3.0"])
|
||||||
end
|
end
|
||||||
|
|
|
@ -109,7 +109,7 @@ module GitHubChangelogGenerator
|
||||||
opts.on("--include-labels x,y,z", Array, "Only issues with the specified labels will be included in the changelog.") 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
|
options[:include_labels] = list
|
||||||
end
|
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|
|
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|
|
||||||
options[:exclude_labels] = list
|
options[:exclude_labels] = list
|
||||||
end
|
end
|
||||||
opts.on("--bug-labels x,y,z", Array, 'Issues with the specified labels will be always added to "Fixed bugs" section. Default is \'bug,Bug\'') do |list|
|
opts.on("--bug-labels x,y,z", Array, 'Issues with the specified labels will be always added to "Fixed bugs" section. Default is \'bug,Bug\'') do |list|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user