rcov 0.9.10-java → 0.9.11-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.
Files changed (3) hide show
  1. data/bin/rcov +2 -2
  2. data/lib/rcov/version.rb +1 -1
  3. metadata +101 -88
data/bin/rcov CHANGED
@@ -85,8 +85,8 @@ EOF
85
85
  options.destdir = dir
86
86
  end
87
87
 
88
- opts.on("-I", "--include PATHS", "Prepend PATHS to $: (colon separated list)") do |paths|
89
- options.loadpaths = paths.split(/:/)
88
+ opts.on("-I", "--include PATHS", "Prepend PATHS to the load-path variable ($:) (#{File::PATH_SEPARATOR} separated list)") do |paths|
89
+ options.loadpaths = paths.split(File::PATH_SEPARATOR)
90
90
  end
91
91
 
92
92
  opts.on("--[no-]comments", "Mark all comments by default.", "(default: --no-comments)") do |comments_run_p|
@@ -3,7 +3,7 @@
3
3
  # See LICENSE for licensing information.
4
4
 
5
5
  module Rcov
6
- VERSION = "0.9.10"
6
+ VERSION = "0.9.11"
7
7
  RELEASE_DATE = "2010-02-28"
8
8
  RCOVRT_ABI = [2,0,0]
9
9
  UPSTREAM_URL = "http://github.com/relevance/rcov"
metadata CHANGED
@@ -1,15 +1,20 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rcov
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 0.9.10
4
+ hash: 45
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 9
9
+ - 11
10
+ version: 0.9.11
6
11
  platform: java
7
12
  authors:
8
- - Relevance
9
- - Chad Humphries (spicycode)
10
- - Aaron Bedra (abedra)
11
- - Jay McGaffigan(hooligan495)
12
- - Mauricio Fernandez
13
+ - Relevance
14
+ - Chad Humphries (spicycode)
15
+ - Aaron Bedra (abedra)
16
+ - Jay McGaffigan(hooligan495)
17
+ - Mauricio Fernandez
13
18
  autorequire:
14
19
  bindir: bin
15
20
  cert_chain:
@@ -20,109 +25,117 @@ dependencies: []
20
25
  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...
21
26
  email: opensource@thinkrelevance.com
22
27
  executables:
23
- - rcov
28
+ - rcov
24
29
  extensions: []
25
30
 
26
31
  extra_rdoc_files: []
27
32
 
28
33
  files:
29
- - bin/rcov
30
- - lib/rcov.rb
31
- - lib/rcov/lowlevel.rb
32
- - lib/rcov/version.rb
33
- - lib/rcov/rcovtask.rb
34
- - lib/rcov/formatters.rb
35
- - lib/rcov/call_site_analyzer.rb
36
- - lib/rcov/code_coverage_analyzer.rb
37
- - lib/rcov/coverage_info.rb
38
- - lib/rcov/differential_analyzer.rb
39
- - lib/rcov/file_statistics.rb
40
- - lib/rcov/formatters/base_formatter.rb
41
- - lib/rcov/formatters/full_text_report.rb
42
- - lib/rcov/formatters/html_erb_template.rb
43
- - lib/rcov/formatters/html_coverage.rb
44
- - lib/rcov/formatters/text_coverage_diff.rb
45
- - lib/rcov/formatters/text_report.rb
46
- - lib/rcov/formatters/text_summary.rb
47
- - lib/rcov/formatters/failure_report.rb
48
- - lib/rcov/templates/index.html.erb
49
- - lib/rcov/templates/detail.html.erb
50
- - lib/rcov/templates/screen.css
51
- - lib/rcov/templates/print.css
52
- - lib/rcov/templates/rcov.js
53
- - lib/rcov/templates/jquery-1.3.2.min.js
54
- - lib/rcov/templates/jquery.tablesorter.min.js
55
- - LICENSE
56
- - ext/java/src/CallsiteHook.java
57
- - ext/java/src/CoverageHook.java
58
- - ext/java/src/RcovHook.java
59
- - ext/java/src/RcovrtService.java
60
- - Rakefile
61
- - doc/readme_for_rake.markdown
62
- - doc/readme_for_vim.markdown
63
- - doc/readme_for_emacs.markdown
64
- - doc/readme_for_api.markdown
65
- - THANKS
66
- - test/functional_test.rb
67
- - test/file_statistics_test.rb
68
- - test/assets/sample_03.rb
69
- - test/assets/sample_05-new.rb
70
- - test/code_coverage_analyzer_test.rb
71
- - test/assets/sample_04.rb
72
- - test/assets/sample_02.rb
73
- - test/assets/sample_05-old.rb
74
- - test/assets/sample_01.rb
75
- - test/turn_off_rcovrt.rb
76
- - test/call_site_analyzer_test.rb
77
- - test/assets/sample_05.rb
78
- - test/assets/sample_06.rb
79
- - editor-extensions/rcov.vim
80
- - test/test_helper.rb
81
- - test/expected_coverage/diff-gcc-all.out
82
- - test/expected_coverage/diff-gcc-diff.out
83
- - test/expected_coverage/diff-gcc-original.out
84
- - test/expected_coverage/diff-no-color.out
85
- - test/expected_coverage/diff.out
86
- - test/expected_coverage/gcc-text.out
87
- - test/expected_coverage/sample_03_rb.html
88
- - test/expected_coverage/sample_03_rb.rb
89
- - test/expected_coverage/sample_04_rb.html
90
- - test/expected_coverage/sample_04_rb.rb
91
- - editor-extensions/rcov.el
92
- - setup.rb
93
- - BLURB
94
- - lib/rcovrt.jar
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
+ - test/test_helper.rb
86
+ - test/expected_coverage/diff-gcc-all.out
87
+ - test/expected_coverage/diff-gcc-diff.out
88
+ - test/expected_coverage/diff-gcc-original.out
89
+ - test/expected_coverage/diff-no-color.out
90
+ - test/expected_coverage/diff.out
91
+ - test/expected_coverage/gcc-text.out
92
+ - test/expected_coverage/sample_03_rb.html
93
+ - test/expected_coverage/sample_03_rb.rb
94
+ - test/expected_coverage/sample_04_rb.html
95
+ - test/expected_coverage/sample_04_rb.rb
96
+ - editor-extensions/rcov.el
97
+ - setup.rb
98
+ - BLURB
99
+ - lib/rcovrt.jar
95
100
  has_rdoc: true
96
101
  homepage: http://github.com/relevance/rcov
97
102
  licenses: []
98
103
 
99
104
  post_install_message:
100
105
  rdoc_options:
101
- - --title
102
- - rcov code coverage tool
106
+ - --title
107
+ - rcov code coverage tool
103
108
  require_paths:
104
- - lib
109
+ - lib
105
110
  required_ruby_version: !ruby/object:Gem::Requirement
106
111
  none: false
107
112
  requirements:
108
- - - ">"
109
- - !ruby/object:Gem::Version
110
- version: 0.0.0
113
+ - - ">"
114
+ - !ruby/object:Gem::Version
115
+ hash: 31
116
+ segments:
117
+ - 0
118
+ - 0
119
+ - 0
120
+ version: 0.0.0
111
121
  required_rubygems_version: !ruby/object:Gem::Requirement
112
122
  none: false
113
123
  requirements:
114
- - - ">="
115
- - !ruby/object:Gem::Version
116
- version: "0"
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ hash: 3
127
+ segments:
128
+ - 0
129
+ version: "0"
117
130
  requirements: []
118
131
 
119
132
  rubyforge_project:
120
- rubygems_version: 1.5.1
133
+ rubygems_version: 1.3.7
121
134
  signing_key:
122
135
  specification_version: 1
123
136
  summary: Code coverage analysis tool for Ruby
124
137
  test_files:
125
- - test/functional_test.rb
126
- - test/file_statistics_test.rb
127
- - test/code_coverage_analyzer_test.rb
128
- - test/call_site_analyzer_test.rb
138
+ - test/functional_test.rb
139
+ - test/file_statistics_test.rb
140
+ - test/code_coverage_analyzer_test.rb
141
+ - test/call_site_analyzer_test.rb