Sha256: c9eb29ba86b70b69e9947fd8f4d597af8ead8503c719b0dc652187e6aa2527df

Contents?: true

Size: 1.33 KB

Versions: 16

Compression:

Stored size: 1.33 KB

Contents

require "bundler/gem_tasks"
require "rspec/core/rake_task"

[:unit, :functional].each do |type|
  RSpec::Core::RakeTask.new(type) do |t|
    t.pattern = "spec/#{type}/**/*_spec.rb"
    t.rspec_opts = [].tap do |a|
      a.push("--color")
      a.push("--format progress")
    end.join(" ")
  end
end

begin
  require "chefstyle"
  require "rubocop/rake_task"
  RuboCop::RakeTask.new(:chefstyle) do |task|
    task.options << "--display-cop-names"
  end
rescue LoadError
  puts "chefstyle gem is not installed"
end

namespace :travis do
  desc "Run tests on Travis CI"
  task ci: %w{chefstyle unit functional}
end

desc "Render product matrix documentation"
task "matrix" do
  require "mixlib/install/product"

  doc_file = File.join(File.dirname(__FILE__), "PRODUCT_MATRIX.md")
  puts "Updating doc file at: #{doc_file}"

  File.open(doc_file, "w+") do |f|
    f.puts("| Product | Product Key  |")
    f.puts("| ------- | ------------ |")
    PRODUCT_MATRIX.products.sort.each do |p_key|
      product = PRODUCT_MATRIX.lookup(p_key)
      f.puts("| #{product.product_name} | #{p_key} |")
    end
    f.puts("")
    f.puts("Do not modify this file manually. It is automatically rendered via a rake task.")
  end
end

task :console do
  require "irb"
  require "irb/completion"
  require "mixlib/install"
  ARGV.clear
  IRB.start
end

task default: %w{travis:ci}

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
mixlib-install-3.11.5 Rakefile
mixlib-install-3.11.2 Rakefile
mixlib-install-3.10.0 Rakefile
mixlib-install-3.9.4 Rakefile
mixlib-install-3.9.3 Rakefile
mixlib-install-3.9.0 Rakefile
mixlib-install-3.8.0 Rakefile
mixlib-install-3.7.0 Rakefile
mixlib-install-3.6.0 Rakefile
mixlib-install-3.5.1 Rakefile
mixlib-install-3.5.0 Rakefile
mixlib-install-3.4.0 Rakefile
mixlib-install-3.3.4 Rakefile
mixlib-install-3.3.3 Rakefile
mixlib-install-3.3.2 Rakefile
mixlib-install-3.3.1 Rakefile