File tree 2 files changed +2
-21
lines changed
2 files changed +2
-21
lines changed Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
+ ruby '2.7.2'
4
+
3
5
source 'https://rubygems.org'
4
6
5
7
gem 'highline'
Original file line number Diff line number Diff line change @@ -26,24 +26,3 @@ namespace :test do
26
26
pp profile . check
27
27
end
28
28
end
29
-
30
- task :changelog do
31
- # Automatically generate a changelog for this project. Only loaded if
32
- # the necessary gem is installed. By default its picking up the version from
33
- # inspec.yml. You can override that behavior with `rake changelog to=1.2.0`
34
- begin
35
- require 'yaml'
36
- metadata = YAML . load_file ( 'inspec.yml' )
37
- v = ENV [ 'to' ] || metadata [ 'version' ]
38
- puts " * Generating changelog for version #{ v } "
39
- require 'github_changelog_generator/task'
40
- GitHubChangelogGenerator ::RakeTask . new :changelog do |config |
41
- config . future_release = v
42
- config . user = 'dev-sec'
43
- config . project = 'mysql-baseline'
44
- end
45
- Rake ::Task [ :changelog ] . execute
46
- rescue LoadError
47
- puts '>>>>> GitHub Changelog Generator not loaded, omitting tasks'
48
- end
49
- end
You can’t perform that action at this time.
0 commit comments