rcov 0.9.6-java → 0.9.7-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,18 @@
1
+ $: << File.dirname(__FILE__) #o
2
+ require 'sample_03' #o
3
+ #o
4
+ klass = Rcov::Test::Temporary::Sample03 #o
5
+ obj = klass.new #o
6
+ obj.f1 # >> [[Rcov::Test::Temporary::Sample03#f1 at sample_03_rb.rb:3]],
7
+ obj.f2 # >> [[Rcov::Test::Temporary::Sample03#f2 at sample_03_rb.rb:7]],
8
+ obj.f3 # >> [[Rcov::Test::Temporary::Sample03#f3 at sample_03_rb.rb:9]],
9
+ #klass.g1 uncovered #o
10
+ klass.g2 # >> [[#<Class:Rcov::Test::Temporary::Sample03>#g2 at sample_03_rb.rb:18]],
11
+ # Total lines : 10
12
+ # Lines of code : 8
13
+ # Total coverage : 100.0%
14
+ # Code coverage : 100.0%
15
+
16
+ # Local Variables:
17
+ # mode: rcov-xref
18
+ # End:
@@ -0,0 +1,4 @@
1
+ require 'test/unit'
2
+ require 'rcov'
3
+ require 'pathname'
4
+ require 'fileutils'
metadata CHANGED
@@ -1,120 +1,127 @@
1
1
  --- !ruby/object:Gem::Specification
2
- required_ruby_version: !ruby/object:Gem::Requirement
3
- requirements:
4
- - - '>'
5
- - !ruby/object:Gem::Version
6
- version: 0.0.0
7
- version:
8
- email: opensource@thinkrelevance.com
2
+ name: rcov
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.9.7
5
+ platform: java
6
+ authors:
7
+ - Relevance
8
+ - Chad Humphries (spicycode)
9
+ - Aaron Bedra (abedra)
10
+ - Jay McGaffigan
11
+ - Mauricio Fernandez
12
+ autorequire:
13
+ bindir: bin
9
14
  cert_chain:
10
- summary: Code coverage analysis tool for Ruby
11
- post_install_message:
15
+ date: 2009-12-27 00:00:00 -05:00
16
+ default_executable: rcov
17
+ dependencies: []
18
+
19
+ description: 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...
20
+ email: opensource@thinkrelevance.com
21
+ executables:
22
+ - rcov
23
+ extensions: []
24
+
12
25
  extra_rdoc_files: []
13
26
 
27
+ files:
28
+ - bin/rcov
29
+ - lib/rcov.rb
30
+ - lib/rcov/lowlevel.rb
31
+ - lib/rcov/version.rb
32
+ - lib/rcov/rcovtask.rb
33
+ - lib/rcov/formatters.rb
34
+ - lib/rcov/call_site_analyzer.rb
35
+ - lib/rcov/code_coverage_analyzer.rb
36
+ - lib/rcov/coverage_info.rb
37
+ - lib/rcov/differential_analyzer.rb
38
+ - lib/rcov/file_statistics.rb
39
+ - lib/rcov/formatters/base_formatter.rb
40
+ - lib/rcov/formatters/full_text_report.rb
41
+ - lib/rcov/formatters/html_erb_template.rb
42
+ - lib/rcov/formatters/html_coverage.rb
43
+ - lib/rcov/formatters/text_coverage_diff.rb
44
+ - lib/rcov/formatters/text_report.rb
45
+ - lib/rcov/formatters/text_summary.rb
46
+ - lib/rcov/formatters/failure_report.rb
47
+ - lib/rcov/templates/index.html.erb
48
+ - lib/rcov/templates/detail.html.erb
49
+ - lib/rcov/templates/screen.css
50
+ - lib/rcov/templates/print.css
51
+ - lib/rcov/templates/rcov.js
52
+ - lib/rcov/templates/jquery-1.3.2.min.js
53
+ - lib/rcov/templates/jquery.tablesorter.min.js
54
+ - LICENSE
55
+ - ext/java/src/CallsiteHook.java
56
+ - ext/java/src/CoverageHook.java
57
+ - ext/java/src/RcovHook.java
58
+ - ext/java/src/RcovrtService.java
59
+ - Rakefile
60
+ - doc/readme_for_rake.markdown
61
+ - doc/readme_for_vim.markdown
62
+ - doc/readme_for_emacs.markdown
63
+ - doc/readme_for_api.markdown
64
+ - THANKS
65
+ - test/functional_test.rb
66
+ - test/file_statistics_test.rb
67
+ - test/assets/sample_03.rb
68
+ - test/assets/sample_05-new.rb
69
+ - test/code_coverage_analyzer_test.rb
70
+ - test/assets/sample_04.rb
71
+ - test/assets/sample_02.rb
72
+ - test/assets/sample_05-old.rb
73
+ - test/assets/sample_01.rb
74
+ - test/turn_off_rcovrt.rb
75
+ - test/call_site_analyzer_test.rb
76
+ - test/assets/sample_05.rb
77
+ - test/assets/sample_06.rb
78
+ - editor-extensions/rcov.vim
79
+ - test/test_helper.rb
80
+ - test/expected_coverage/diff-gcc-all.out
81
+ - test/expected_coverage/diff-gcc-diff.out
82
+ - test/expected_coverage/diff-gcc-original.out
83
+ - test/expected_coverage/diff-no-color.out
84
+ - test/expected_coverage/diff.out
85
+ - test/expected_coverage/gcc-text.out
86
+ - test/expected_coverage/sample_03_rb.html
87
+ - test/expected_coverage/sample_03_rb.rb
88
+ - test/expected_coverage/sample_04_rb.html
89
+ - test/expected_coverage/sample_04_rb.rb
90
+ - editor-extensions/rcov.el
91
+ - setup.rb
92
+ - BLURB
93
+ - lib/rcovrt.jar
94
+ has_rdoc: true
14
95
  homepage: http://github.com/relevance/rcov
15
- signing_key:
16
- name: rcov
17
- rdoc_options:
18
- - --title
19
- - rcov code coverage tool
20
- rubyforge_project:
21
- autorequire:
22
96
  licenses: []
23
97
 
24
- executables:
25
- - rcov
26
- description: rcov is a code coverage tool for Ruby. It is commonly used for viewing
27
- overall test unit coverage of target code. It features fast execution (20-300 times
28
- faster than previous tools), multiple analysis modes, XHTML and several kinds of
29
- text reports, easy automation with Rake via a RcovTask, fairly accurate coverage
30
- information through code linkage inference using simple heuristics, colorblind-friendliness...
31
- specification_version: 1
32
- default_executable: rcov
33
- files:
34
- - bin/rcov
35
- - lib/rcov.rb
36
- - lib/rcov/lowlevel.rb
37
- - lib/rcov/version.rb
38
- - lib/rcov/rcovtask.rb
39
- - lib/rcov/formatters.rb
40
- - lib/rcov/call_site_analyzer.rb
41
- - lib/rcov/code_coverage_analyzer.rb
42
- - lib/rcov/coverage_info.rb
43
- - lib/rcov/differential_analyzer.rb
44
- - lib/rcov/file_statistics.rb
45
- - lib/rcov/formatters/base_formatter.rb
46
- - lib/rcov/formatters/full_text_report.rb
47
- - lib/rcov/formatters/html_erb_template.rb
48
- - lib/rcov/formatters/html_coverage.rb
49
- - lib/rcov/formatters/text_coverage_diff.rb
50
- - lib/rcov/formatters/text_report.rb
51
- - lib/rcov/formatters/text_summary.rb
52
- - lib/rcov/formatters/failure_report.rb
53
- - lib/rcov/templates/index.html.erb
54
- - lib/rcov/templates/detail.html.erb
55
- - lib/rcov/templates/screen.css
56
- - lib/rcov/templates/print.css
57
- - lib/rcov/templates/rcov.js
58
- - lib/rcov/templates/jquery-1.3.2.min.js
59
- - lib/rcov/templates/jquery.tablesorter.min.js
60
- - LICENSE
61
- - ext/java/src/CallsiteHook.java
62
- - ext/java/src/CoverageHook.java
63
- - ext/java/src/RcovHook.java
64
- - ext/java/src/RcovrtService.java
65
- - Rakefile
66
- - doc/readme_for_rake.markdown
67
- - doc/readme_for_vim.markdown
68
- - doc/readme_for_emacs.markdown
69
- - doc/readme_for_api.markdown
70
- - THANKS
71
- - test/functional_test.rb
72
- - test/file_statistics_test.rb
73
- - test/assets/sample_03.rb
74
- - test/assets/sample_05-new.rb
75
- - test/code_coverage_analyzer_test.rb
76
- - test/assets/sample_04.rb
77
- - test/assets/sample_02.rb
78
- - test/assets/sample_05-old.rb
79
- - test/assets/sample_01.rb
80
- - test/turn_off_rcovrt.rb
81
- - test/call_site_analyzer_test.rb
82
- - test/assets/sample_05.rb
83
- - test/assets/sample_06.rb
84
- - editor-extensions/rcov.vim
85
- - editor-extensions/rcov.el
86
- - setup.rb
87
- - BLURB
88
- - lib/rcovrt.jar
98
+ post_install_message:
99
+ rdoc_options:
100
+ - --title
101
+ - rcov code coverage tool
102
+ require_paths:
103
+ - lib
104
+ required_ruby_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">"
107
+ - !ruby/object:Gem::Version
108
+ version: 0.0.0
109
+ version:
89
110
  required_rubygems_version: !ruby/object:Gem::Requirement
90
111
  requirements:
91
- - - '>='
92
- - !ruby/object:Gem::Version
93
- version: "0"
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: "0"
94
115
  version:
95
- extensions: []
96
-
97
- rubygems_version: 1.3.3
98
116
  requirements: []
99
117
 
100
- authors:
101
- - Relevance
102
- - Chad Humphries (spicycode)
103
- - Aaron Bedra (abedra)
104
- - Jay McGaffigan
105
- - Mauricio Fernandez
106
- date: 2009-05-12 04:00:00 +00:00
107
- platform: java
118
+ rubyforge_project:
119
+ rubygems_version: 1.3.5
120
+ signing_key:
121
+ specification_version: 1
122
+ summary: Code coverage analysis tool for Ruby
108
123
  test_files:
109
- - test/functional_test.rb
110
- - test/file_statistics_test.rb
111
- - test/code_coverage_analyzer_test.rb
112
- - test/call_site_analyzer_test.rb
113
- version: !ruby/object:Gem::Version
114
- version: 0.9.6
115
- require_paths:
116
- - lib
117
- dependencies: []
118
-
119
- bindir: bin
120
- has_rdoc: true
124
+ - test/functional_test.rb
125
+ - test/file_statistics_test.rb
126
+ - test/code_coverage_analyzer_test.rb
127
+ - test/call_site_analyzer_test.rb