Sha256: 87ef6761e806b49f630a2da191f37f03546ba35520314d5171de9aa133cd10b7

Contents?: true

Size: 295 Bytes

Versions: 2

Compression:

Stored size: 295 Bytes

Contents

#!/usr/bin/env rake
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'

RSpec::Core::RakeTask.new

RuboCop::RakeTask.new do |rubocop|
  rubocop.options = ['-D']
end

desc 'Run all style checks and unit tests'
task test: [:rubocop, :spec]

task default: :test

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
guard-foodcritic-3.0.0 Rakefile
guard-foodcritic-2.1.0 Rakefile