codeclimate/codeclimate

View on GitHub
Rakefile

Summary

Maintainability
Test Coverage
require "bundler/gem_helper"
require "rspec/core/rake_task"

Bundler::GemHelper.install_tasks

desc "Run (quick) specs"
RSpec::Core::RakeTask.new(:spec) do |task|
  task.rspec_opts = "--tag ~slow"
end

desc "Run all specs, including slow ones"
RSpec::Core::RakeTask.new("spec:all") do |task|
  task.rspec_opts = "--format progress --format RspecJunitFormatter --out spec/reports/junit.xml"
end

desc "Run benchmark specs"
RSpec::Core::RakeTask.new("spec:benchmark") do |task|
  task.pattern = "benchmarks/**/*_benchmark.rb"
end

task(default: :spec)