forked from voxpupuli/puppet-lint-strict_indent-check
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
19 lines (15 loc) · 632 Bytes
/
Rakefile
File metadata and controls
19 lines (15 loc) · 632 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
task default: :spec
begin
require 'rubygems'
require 'github_changelog_generator/task'
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
config.exclude_labels = %w{duplicate question invalid wontfix wont-fix skip-changelog modulesync}
config.user = 'voxpupuli'
config.project = 'puppet-lint-strict_indent-check'
config.future_release = Gem::Specification.load("#{config.project}.gemspec").version
end
rescue LoadError
end