Sha256: c4629b8fa0d07db9d249e2f2b98cd78212c7cf7180f53032fea156461a0c4bca

Contents?: true

Size: 365 Bytes

Versions: 6

Compression:

Stored size: 365 Bytes

Contents

require 'bundler/gem_tasks'
require 'rake/testtask'
require 'rubocop/rake_task'

RuboCop::RakeTask.new

Rake::TestTask.new do |t|
  t.verbose = true
  t.warning = true
end

namespace :test do
  task :coverage do
    ENV['COVERAGE'] = 'true'
    Rake::Task['test'].invoke
  end
end

task(:doc_stats) { ruby '-S yard stats' }
task default: %i[test doc_stats rubocop]

Version data entries

6 entries across 6 versions & 6 rubygems

Version Path
r_spec-0.3.1 Rakefile
fix-expect-0.3.2 Rakefile
matchi-rspec-0.1.1 Rakefile
defi-1.1.3 Rakefile
matchi-1.0.2 Rakefile
matchi-fix-1.0.1 Rakefile