Skip to content

Commit

Permalink
Merge pull request #29 from dev-sec/fix_rakefile
Browse files Browse the repository at this point in the history
fix rubocop error for Rakefile
  • Loading branch information
schurzi authored Apr 24, 2021
2 parents c46c38c + 8153e01 commit 271f3e7
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,19 @@ task :changelog do
# Automatically generate a changelog for this project. Only loaded if
# the necessary gem is installed. By default its picking up the version from
# inspec.yml. You can override that behavior with `rake changelog to=1.2.0`
require 'yaml'
metadata = YAML.load_file('inspec.yml')
v = ENV['to'] || metadata['version']
puts " * Generating changelog for version #{v}"
require 'github_changelog_generator/task'
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
config.future_release = v
config.user = 'dev-sec'
config.project = 'openstack-baseline'
end
Rake::Task[:changelog].execute
rescue LoadError
puts '>>>>> GitHub Changelog Generator not loaded, omitting tasks'

require 'yaml'
metadata = YAML.load_file('inspec.yml')
v = ENV['to'] || metadata['version']
puts " * Generating changelog for version #{v}"
require 'github_changelog_generator/task'
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
config.future_release = v
config.user = 'dev-sec'
config.project = 'openstack-baseline'
end
Rake::Task[:changelog].execute
rescue LoadError
puts '>>>>> GitHub Changelog Generator not loaded, omitting tasks'

end

0 comments on commit 271f3e7

Please sign in to comment.