mirror of
https://github.com/dev-sec/ansible-collection-hardening
synced 2024-11-10 09:14:18 +00:00
11 lines
335 B
Ruby
11 lines
335 B
Ruby
#!/usr/bin/env rake
|
|
# encoding: utf-8
|
|
|
|
# Automatically generate a changelog for this project. Only loaded if
|
|
# the necessary gem is installed.
|
|
begin
|
|
require 'github_changelog_generator/task'
|
|
GitHubChangelogGenerator::RakeTask.new :changelog
|
|
rescue LoadError
|
|
puts '>>>>> GitHub Changelog Generator not loaded, omitting tasks'
|
|
end
|