Sha256: 864f4668535abf64e1508dd0440c697aeba36c3722c05e9b02a5a33e83e82029
Contents?: true
Size: 1.22 KB
Versions: 2
Compression:
Stored size: 1.22 KB
Contents
begin require 'simplecov' require 'simplecov-console' require 'codecov' rescue LoadError else SimpleCov.start do track_files 'lib/**/*.rb' add_filter '/spec' enable_coverage :branch # do not track vendored files add_filter '/vendor' add_filter '/.vendor' end SimpleCov.formatters = [ SimpleCov::Formatter::Console, SimpleCov::Formatter::Codecov, ] end require "bundler/gem_tasks" # https://cucumber.io/docs/tools/ruby/ # https://stackoverflow.com/questions/6473419/using-simplecov-to-display-cucumber-code-coverage require 'cucumber/rake/task' Cucumber::Rake::Task.new(:features) do |t| t.cucumber_opts = "--format progress" # Any valid command line option can go here. end begin require 'github_changelog_generator/task' GitHubChangelogGenerator::RakeTask.new :changelog do |config| version = Hiera::Backend::Eyaml::VERSION config.future_release = "v#{version}" if version =~ /^\d+\.\d+.\d+$/ 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 = 'hiera-eyaml' end rescue LoadError end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hiera-eyaml-3.4.0 | Rakefile |
hiera-eyaml-3.3.0 | Rakefile |