Module Buildr::Emma
In: lib/buildr/java/emma.rb  (CVS)

Provides the emma:html and emma:xml tasks. Require explicitly using require "buildr/emma".

You can generate emma reports for a single project using the project name as prefix:

  project_name:emma:html

You can also specify which classes to include/exclude from instrumentation by passing a class name regexp to the emma.include or emma.exclude methods.

  define 'someModule' do
     emma.include 'some.package.*'
     emma.exclude 'some.foo.util.SimpleUtil'
  end

Methods

Constants

VERSION = '2.0.5312'

Public Class methods

[Validate]