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

Version Path
koine-attributes-1.2.4 Rakefile
koine-attributes-1.2.3 Rakefile
koine-attributes-1.2.2 Rakefile
koine-attributes-1.2.1 Rakefile
koine-attributes-1.2.0 Rakefile
koine-attributes-1.1.0 Rakefile
koine-attributes-1.0.0 Rakefile
koine-attributes-0.4.0 Rakefile
koine-attributes-0.3.2 Rakefile
koine-attributes-0.3.1 Rakefile
koine-attributes-0.3.0 Rakefile
koine-attributes-0.2.3 Rakefile
koine-attributes-0.2.2 Rakefile
koine-attributes-0.2.1 Rakefile
koine-attributes-0.2.0 Rakefile