forked from relevance/rcov
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rcov-java.gemspec
61 lines (57 loc) · 3.95 KB
/
rcov-java.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
PKG_FILES = ["bin/rcov", "lib/rcov.rb", "lib/rcov/lowlevel.rb", "lib/rcov/version.rb",
"lib/rcov/rcovtask.rb", "lib/rcov/formatters.rb", "lib/rcov/call_site_analyzer.rb",
"lib/rcov/code_coverage_analyzer.rb", "lib/rcov/coverage_info.rb", "lib/rcov/differential_analyzer.rb",
"lib/rcov/file_statistics.rb",
"lib/rcov/formatters/base_formatter.rb", "lib/rcov/formatters/full_text_report.rb",
"lib/rcov/formatters/html_erb_template.rb",
"lib/rcov/formatters/html_coverage.rb", "lib/rcov/formatters/text_coverage_diff.rb",
"lib/rcov/formatters/text_report.rb", "lib/rcov/formatters/text_summary.rb",
"lib/rcov/formatters/failure_report.rb",
"lib/rcov/templates/index.html.erb", "lib/rcov/templates/detail.html.erb",
"lib/rcov/templates/screen.css",
"lib/rcov/templates/print.css",
"lib/rcov/templates/rcov.js",
"lib/rcov/templates/jquery-1.3.2.min.js",
"lib/rcov/templates/jquery.tablesorter.min.js", "LICENSE",
"ext/java/src/CallsiteHook.java","ext/java/src/CoverageHook.java","ext/java/src/RcovHook.java","ext/java/src/RcovrtService.java",
"Rakefile", "doc/readme_for_rake.markdown", "doc/readme_for_vim.markdown", "doc/readme_for_emacs.markdown",
"doc/readme_for_api.markdown", "THANKS", "test/functional_test.rb",
"test/file_statistics_test.rb", "test/assets/sample_03.rb", "test/assets/sample_05-new.rb",
"test/code_coverage_analyzer_test.rb", "test/assets/sample_04.rb", "test/assets/sample_02.rb",
"test/assets/sample_05-old.rb", "test/assets/sample_01.rb", "test/turn_off_rcovrt.rb",
"test/call_site_analyzer_test.rb", "test/assets/sample_05.rb", "test/assets/sample_06.rb", "editor-extensions/rcov.vim",
"test/test_helper.rb",
"test/expected_coverage/diff-gcc-all.out", "test/expected_coverage/diff-gcc-diff.out", "test/expected_coverage/diff-gcc-original.out",
"test/expected_coverage/diff-no-color.out", "test/expected_coverage/diff.out", "test/expected_coverage/gcc-text.out",
"test/expected_coverage/sample_03_rb.html", "test/expected_coverage/sample_03_rb.rb", "test/expected_coverage/sample_04_rb.html",
"test/expected_coverage/sample_04_rb.rb",
"editor-extensions/rcov.el", "setup.rb", "BLURB", "lib/rcovrt.jar"]
Gem::Specification.new do |s|
s.name = %q{rcov}
s.version = "0.9.8"
s.required_rubygems_version = nil if s.respond_to? :required_rubygems_version=
s.authors = ["Relevance", "Chad Humphries (spicycode)", "Aaron Bedra (abedra)", "Jay McGaffigan", "Mauricio Fernandez"]
s.cert_chain = nil
s.date = %q{2009-12-29}
s.default_executable = %q{rcov}
s.description = %q{rcov is a code coverage tool for Ruby. It is commonly used for viewing overall test unit coverage of target code. It features fast execution (20-300 times faster than previous tools), multiple analysis modes, XHTML and several kinds of text reports, easy automation with Rake via a RcovTask, fairly accurate coverage information through code linkage inference using simple heuristics, colorblind-friendliness...}
s.email = %q{[email protected]}
s.executables = ["rcov"]
s.files = PKG_FILES
s.platform = %q{java}
s.has_rdoc = true
s.homepage = %q{http://github.com/relevance/rcov}
s.rdoc_options = ["--title", "rcov code coverage tool"]
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new("> 0.0.0")
s.summary = %q{Code coverage analysis tool for Ruby}
s.test_files = ["test/functional_test.rb", "test/file_statistics_test.rb", "test/code_coverage_analyzer_test.rb", "test/call_site_analyzer_test.rb"]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 1
if current_version >= 3 then
else
end
else
end
end