summaryrefslogtreecommitdiff
path: root/Rakefile
blob: 7be508e87eac7aca9fc5eb8348466dfee39911b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require "bundler/gem_tasks"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec)

task default: :spec

begin
  require "chefstyle"
  require "rubocop/rake_task"
  RuboCop::RakeTask.new(:style) do |task|
    task.options += ["--display-cop-names", "--no-color"]
  end
rescue LoadError
  puts "chefstyle/rubocop is not available."
end

task ci: [:style, :spec]