mirror of
https://github.com/chenasraf/snpr.git
synced 2026-05-17 17:38:07 +00:00
* Use new Codeclimate test reporter It let's us combine the reports from both, rspec and test/unit. * Check if coverage drop comes from config change * Revert "Check if coverage drop comes from config change" This reverts commit f8f91fe9664a22a8307b3a328aa6510c876b7dff.
11 lines
324 B
Ruby
11 lines
324 B
Ruby
# frozen_string_literal: true
|
|
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
|
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
|
|
|
require File.expand_path('../config/application', __FILE__)
|
|
require 'rake'
|
|
|
|
Snpr::Application.load_tasks
|
|
|
|
task default: [:spec, :test]
|