Sha256: 529579cc42c7dd6349e541d6dfb8b20fe899b4e2bddd4c79b07d0434d3d9cfa2

Contents?: true

Size: 786 Bytes

Versions: 1

Compression:

Stored size: 786 Bytes

Contents

# frozen_string_literal: true

require 'bundler/gem_tasks'

require 'github_changelog_generator/task'
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
  config.future_release = Motoko::VERSION
  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.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog ignore]
  config.user = 'smortex'
  config.project = 'motoko'
  config.since_tag = 'v1.0.0'
end

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

task default: :spec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
motoko-1.1.0 Rakefile