summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2017-10-06 16:27:30 -0400
committerTim Smith <tsmith@chef.io>2017-10-06 16:27:30 -0400
commit23b08822be0c9591a3f25ac5aebd31a0810d35bc (patch)
treeed82feeaefd5e6841b6611e712e1a1da1a5b49df
parentbacc34686a90bda86054700203d9bfba28056ec5 (diff)
downloadohai-remove_changelog.tar.gz
Remove github changelog generatorremove_changelog
We're not using this anymore in ohai-8 land. Signed-off-by: Tim Smith <tsmith@chef.io>
-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