summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Gemfile1
-rw-r--r--Rakefile11
2 files changed, 0 insertions, 12 deletions
diff --git a/Gemfile b/Gemfile
index 6d5f195c..3e8abd74 100644
--- a/Gemfile
+++ b/Gemfile
@@ -16,6 +16,5 @@ group :development do
gem "rspec-mocks", "~> 3.0"
gem "rspec-collection_matchers", "~> 1.0"
gem "rspec_junit_formatter"
- gem "github_changelog_generator", git: "https://github.com/chef/github-changelog-generator"
gem "activesupport", "< 5.0" if RUBY_VERSION <= "2.2.2" # github_changelog_generator dep
end
diff --git a/Rakefile b/Rakefile
index 6d3b626a..980e3135 100644
--- a/Rakefile
+++ b/Rakefile
@@ -22,14 +22,3 @@ require "rubocop/rake_task"
RuboCop::RakeTask.new(:style) do |task|
task.options += ["--display-cop-names", "--no-color"]
end
-
-require "github_changelog_generator/task"
-
-GitHubChangelogGenerator::RakeTask.new :changelog do |config|
- config.future_release = Ohai::VERSION
- config.max_issues = 0
- config.add_issues_wo_labels = false
- 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