Sha256: ddf68d32239979e08b767745ec83cd7ea70c6aee49cdfd1e5fb9405a2a6c10af

Contents?: true

Size: 550 Bytes

Versions: 2

Compression:

Stored size: 550 Bytes

Contents

require 'cover_me'

CoverMe.config do |c|
    # where is your project's root:
    "------"+c.project.root 
  
    # what files are you interested in coverage for:
    c.file_pattern # => /(#{CoverMe.config.project.root}\/app\/.+\.rb|#{CoverMe.config.project.root}\/lib\/.+\.rb)/i (default)
  
    # where do you want the HTML generated:
    c.html_formatter.output_path # => File.join(CoverMe.config.project.root, 'coverage') (default)
  
    # what do you want to happen when it finishes:

end

at_exit do
    CoverMe.complete!
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
lolita-file-upload-0.2.1 test_orm/coverage.rb
lolita-file-upload-0.2.0 test_orm/coverage.rb