Rakefile in beaker-vmware-0.3.0 vs Rakefile in beaker-vmware-1.0.0

- old
+ new

@@ -156,5 +156,19 @@ else puts "Could not find a running YARD Server" end end end + +begin + require 'rubygems' + require 'github_changelog_generator/task' +rescue LoadError # rubocop:disable Lint/HandleExceptions +else + GitHubChangelogGenerator::RakeTask.new :changelog do |config| + config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog] + config.user = 'voxpupuli' + config.project = 'beaker-vmware' + gem_version = Gem::Specification.load("#{config.project}.gemspec").version + config.future_release = gem_version + end +end