From 1e96ffdd156422a02b3ddd7a5fd06316d5e35cf4 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Thu, 6 Jun 2019 21:36:55 -0700 Subject: Use the standard rakefile Signed-off-by: Tim Smith --- Rakefile | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/Rakefile b/Rakefile index d6c0027..8aa53bc 100644 --- a/Rakefile +++ b/Rakefile @@ -1,23 +1,26 @@ require "bundler/gem_tasks" -require "rspec/core/rake_task" -task default: [:style, :spec] - -Bundler::GemHelper.install_tasks - -desc "Run specs" -RSpec::Core::RakeTask.new(:spec) do |spec| - spec.pattern = "spec/**/*_spec.rb" +begin + require "rspec/core/rake_task" + RSpec::Core::RakeTask.new do |t| + t.pattern = "spec/**/*_spec.rb" + end +rescue LoadError + desc "rspec is not installed, this task is disabled" + task :spec do + abort "rspec is not installed. bundle install first to make sure all dependencies are installed." + end end begin require "chefstyle" require "rubocop/rake_task" + desc "Run Chefstyle tests" RuboCop::RakeTask.new(:style) do |task| task.options += ["--display-cop-names", "--no-color"] end rescue LoadError - puts "chefstyle/rubocop is not available. bundle install first to make sure all dependencies are installed." + puts "chefstyle gem is not installed. bundle install first to make sure all dependencies are installed." end begin @@ -34,3 +37,5 @@ task :console do ARGV.clear IRB.start end + +task default: [:spec, :style] -- cgit v1.2.1