Sha256: 63bf0ea888e2294ac6d188851ddc1889025268fa4326ba9b02a88a9ef5ee113a
Contents?: true
Size: 971 Bytes
Versions: 1
Compression:
Stored size: 971 Bytes
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 task :default => [:test] begin require "github_changelog_generator/task" GitHubChangelogGenerator::RakeTask.new :changelog do |config| config.future_release = "v#{Kitchen::Driver::HYPERV_VERSION}" config.issues = false config.pulls = true config.user = 'test-kitchen' config.project = 'kitchen-hyperv' end rescue LoadError puts "github_changelog_generator is not available. " \ "gem install github_changelog_generator to generate changelogs" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kitchen-hyperv-0.5.0 | Rakefile |