Sha256: 41777fadc8c90de0942ad440a75da92e7aa9eb05d2286b01ba83d2c436e56b79
Contents?: true
Size: 443 Bytes
Versions: 3
Compression:
Stored size: 443 Bytes
Contents
require 'rubocop/rake_task' require 'foodcritic' require 'rspec/core/rake_task' RuboCop::RakeTask.new do |rubocop| rubocop.options = ['-D'] end FoodCritic::Rake::LintTask.new do |foodcritic| foodcritic.options[:fail_tags] = 'any' end RSpec::Core::RakeTask.new desc 'Run Rubocop and Foodcritic style checks' task style: [:rubocop, :foodcritic] desc 'Run all style checks and unit tests' task test: [:style, :spec] task default: :test
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
chefdk-julia-0.4.3 | files/default/Rakefile |
chefdk-julia-0.4.2 | files/default/Rakefile |
chefdk-julia-0.4.1 | files/default/Rakefile |