Sha256: 0b9ad7394e26df57331baa64d4055710e97717ac4b441150e66c3f44348113d3

Contents?: true

Size: 1.08 KB

Versions: 9

Compression:

Stored size: 1.08 KB

Contents

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

require "bundler/gem_tasks"

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]

Version data entries

9 entries across 9 versions & 4 rubygems

Version Path
kitchen-pester-0.8.0 Rakefile
kitchen-vmm-0.1.3 Rakefile
kitchen-vmm-0.1.2 Rakefile
kitchen-vmm-0.1.1 Rakefile
kitchen-hyperv-0.1.20 Rakefile
kitchen-pester-0.7.1 Rakefile
kitchen-pester-0.7.0 Rakefile
chef-zero-scheduled-task-0.0.2 Rakefile
chef-zero-scheduled-task-0.0.1 Rakefile