Sha256: e642af2963e4fc924bb00fa20090a83987ea2cd422b7efa0481929e364249489

Contents?: true

Size: 1.89 KB

Versions: 2

Compression:

Stored size: 1.89 KB

Contents

# -*- encoding: utf-8 -*-

require "bundler/gem_tasks"
require "kitchen/driver/hyperv_version"

require "rake/testtask"
Rake::TestTask.new(:unit) do |t|
  t.libs.push "lib"
  t.test_files = FileList["spec/**/*_spec.rb"]
  t.verbose = true
end

desc "Run all test suites"
task :test => [:unit]

desc "Display LOC stats"
task :stats do
  puts "\n## Production Code Stats"
  sh "countloc -r lib"
  puts "\n## Test Code Stats"
  sh "countloc -r spec"
end

require "finstyle"
require "rubocop/rake_task"
RuboCop::RakeTask.new(:style) do |task|
  task.options << "--display-cop-names"
  task.options << "--lint"
  task.options << '--config' << '.rubocop.yml'
  task.patterns = ['lib/**/*.rb']
end

require "cane/rake_task"
desc "Run cane to check quality metrics"
Cane::RakeTask.new do |cane|
  cane.canefile = "./.cane"
end

desc "Run all quality tasks"
task :quality => [:cane, :style, :stats]

require "yard"
YARD::Rake::YardocTask.new

desc "Generate gem dependency graph"
task :viz do
  Bundler.with_clean_env do
    sh "bundle viz --without test development guard " \
      "--requirements --version"
  end
end

task :default => [:test, :quality]

begin
  require "github_changelog_generator/task"

  GitHubChangelogGenerator::RakeTask.new :changelog do |config|
    #config.issues = false
    config.future_release = "v#{Kitchen::Driver::HYPERV_VERSION}"
    config.since_tag = "v0.1.10"
    config.token = ENV["GITHUB_TOKEN"]
    #config.enhancement_labels = "enhancement,Enhancement,New Feature,Feature".split(",")
    #config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(",")
    #config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog,Exclude From Changelog,Question,Discussion".split(",")
  end
rescue LoadError
  puts "github_changelog_generator is not available. gem install github_changelog_generator to generate changelogs"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
kitchen-hyperv-0.2.1 Rakefile
kitchen-hyperv-0.2.0 Rakefile