Sha256: 3f51a12b819ddc70e019b00db69e1ebfe6c6cf52ad810c17b41ff7bd0ec45df5

Contents?: true

Size: 1.52 KB

Versions: 2

Compression:

Stored size: 1.52 KB

Contents

require 'rubygems'
require 'bundler'

# Hack this dir onto path for Ruby 1.9.2
# support:
test_package = File.expand_path(File.join(File.dirname(__FILE__), 'test'))
$: << test_package unless $:.include? test_package

Bundler.require

require 'rake/clean'
require 'rake/testtask'

##
# NOTE, to generate documentation, simply run:
#
#   bundle install
#   yard
#

CLEAN.add 'doc'

namespace :test do
  Rake::TestTask.new(:units) do |t|
    t.libs << "test/unit"
    t.test_files = FileList["test/unit/*_test.rb"]
    t.verbose = true
  end

  namespace :coverage do
    desc "Delete aggregate coverage data."
    task(:clean) { rm_f "coverage.data" }
  end

  namespace :torture do
    desc "Flog the Sprouts"
    task :flog do
      puts "--------------------------"
      puts "Flog Report:"
      message =<<EOM
According to Jake Scruggs at: http://bit.ly/3QrvW

Score of    Means
0-10        Awesome
11-20       Good enough
21-40       Might need refactoring
41-60       Possible to justify
61-100      Danger
100-200     Whoop, whoop, whoop
200 +       Someone please think of the children
EOM
      puts message
      puts ""

      sh "find lib -name '*.rb' | xargs flog"
    end

    desc "Flay the Sprouts"
    task :flay do
      puts "--------------------------"
      puts "Flay Report:"
      sh "flay lib/**/*.rb"
    end
  end

  desc "Run all tortuous reports"
  task :torture => ['torture:flog', 'torture:flay']

end

task :test => 'test:units'

desc "Run all tests and reports"
task :cruise => [:test, 'test:coverage', 'test:torture']

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sprout-1.1.18.pre rakefile.rb
sprout-1.1.17.pre rakefile.rb