Sha256: 64b43356c851d111b14f5091843eb40139cb72369a49976fe484e37e79528816

Contents?: true

Size: 665 Bytes

Versions: 1

Compression:

Stored size: 665 Bytes

Contents

# frozen_string_literal: true

task default: [:changelog]

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.0.0 Rakefile