Sha256: 3a43682beeeb3262b5326b155fe8e6ab51e187edca8f3ba6eee9e0e3641545e5

Contents?: true

Size: 418 Bytes

Versions: 5

Compression:

Stored size: 418 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

5 entries across 5 versions & 1 rubygems

Version Path
koine-attributes-0.1.4 Rakefile
koine-attributes-0.1.3 Rakefile
koine-attributes-0.1.2 Rakefile
koine-attributes-0.1.1 Rakefile
koine-attributes-0.1.0 Rakefile