Skip to content
This repository was archived by the owner on Nov 17, 2020. It is now read-only.

Commit ce8c62b

Browse files
committed
add changelog generator
1 parent d68494a commit ce8c62b

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,7 @@ end
2929
group :openstack do
3030
gem 'kitchen-openstack'
3131
end
32+
33+
group :tools do
34+
gem 'github_changelog_generator', '~> 1'
35+
end

Rakefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env rake
2+
# encoding: utf-8
3+
4+
# Automatically generate a changelog for this project. Only loaded if
5+
# the necessary gem is installed.
6+
begin
7+
require 'github_changelog_generator/task'
8+
GitHubChangelogGenerator::RakeTask.new :changelog
9+
rescue LoadError
10+
puts '>>>>> GitHub Changelog Generator not loaded, omitting tasks'
11+
end

0 commit comments

Comments
 (0)