Sha256: 6493011792e0f1a3671959a119ef7ab5ee5539cf859bb3b0348259d25353c346

Contents?: true

Size: 549 Bytes

Versions: 8

Compression:

Stored size: 549 Bytes

Contents

require "bundler"
Bundler::GemHelper.install_tasks

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/test_*.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo install rcov"
  end
end

require 'yard'
YARD::Rake::YardocTask.new

task :default => :test

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
attrtastic-0.4.3 Rakefile
attrtastic-0.4.2 Rakefile
attrtastic-0.4.1 Rakefile
attrtastic-0.4.0 Rakefile
attrtastic-0.3.3 Rakefile
attrtastic-0.3.2 Rakefile
attrtastic-0.3.1 Rakefile
attrtastic-0.3.0 Rakefile