Sha256: c1834e0a38c3aa7e9383c94f4f99bf4781339e484a28b1b8441f86836921b703
Contents?: true
Size: 694 Bytes
Versions: 1
Compression:
Stored size: 694 Bytes
Contents
# frozen_string_literal: true require 'beaker-rspec/rake_task' task default: :beaker begin require 'rubygems' require 'github_changelog_generator/task' rescue LoadError # github_changelog_generator isn't available, so we won't define a rake task with it else 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] config.user = 'voxpupuli' config.project = 'beaker-rspec' config.future_release = Gem::Specification.load("#{config.project}.gemspec").version end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
beaker-rspec-7.1.0 | Rakefile |