-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
30 lines (23 loc) · 920 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true
require 'bundler/gem_tasks'
require 'github_changelog_generator/task'
require 'rspec/core/rake_task'
require 'cucumber/rake/task'
RSpec::Core::RakeTask.new(:spec)
Cucumber::Rake::Task.new(:features)
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
config.header = <<~HEADER.chomp
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
HEADER
config.user = 'opus-codium'
config.project = 'email-report-processor'
config.issues = false
config.exclude_labels = %w[dependencies skip-changelog]
require 'email_report_processor/version'
config.future_release = "v#{EmailReportProcessor::VERSION}"
end
task test: %i[spec features]
task default: :test