summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile16
1 files changed, 10 insertions, 6 deletions
diff --git a/Rakefile b/Rakefile
index bbb984c..c43a6a3 100644
--- a/Rakefile
+++ b/Rakefile
@@ -52,11 +52,15 @@ task :berkshelf_spec do
system("cd #{gem_path} && thor spec:ci")
end
-require 'github_changelog_generator/task'
+begin
+ require "github_changelog_generator/task"
-GitHubChangelogGenerator::RakeTask.new :changelog do |config|
- # config.future_release = ChefZero::VERSION
- config.enhancement_labels = "enhancement,Enhancement,New Feature".split(',')
- config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(',')
- config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog".split(',')
+ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
+ config.future_release = ChefZero::VERSION
+ config.enhancement_labels = "enhancement,Enhancement,New Feature,Feature".split(",")
+ config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(",")
+ config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog,Exclude From Changelog,Question,Discussion".split(",")
+ end
+rescue LoadError
+ puts "github_changelog_generator is not available. gem install github_changelog_generator to generate changelogs"
end