Sha256: 095a614e1fff34e5a86abb2dc8ac7eaf6959d1e25f026847f4d1e7afacb763d0
Contents?: true
Size: 414 Bytes
Versions: 15
Compression:
Stored size: 414 Bytes
Contents
require 'bundler/gem_tasks' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task default: :spec namespace :test do desc 'run tests and generate invoke coveralls' task :coveralls do ENV['COVERALLS'] = 'true' Rake::Task['test:coverage'].invoke end desc 'run tests and generate code coverage' task :coverage do ENV['COVERAGE'] = 'true' Rake::Task[:spec].invoke end end
Version data entries
15 entries across 15 versions & 1 rubygems