relevance-rcov 0.8.3.2 → 0.8.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/BLURB +0 -38
- data/LICENSE +2 -5
- data/Rakefile +3 -0
- data/bin/rcov +164 -218
- data/ext/rcovrt/1.8/callsite.c +122 -148
- data/ext/rcovrt/1.8/rcovrt.c +187 -231
- data/ext/rcovrt/1.9/callsite.c +83 -107
- data/ext/rcovrt/1.9/rcovrt.c +174 -225
- data/lib/rcov/templates/screen.css +54 -34
- metadata +3 -2
- data/LEGAL +0 -36
@@ -1,7 +1,19 @@
|
|
1
|
-
body {
|
1
|
+
body {
|
2
|
+
font: 62.5%/1.4em Helvetica, Arial, Sans-Serif;
|
3
|
+
color: #4C4C4C;
|
4
|
+
background-color: #F4F2ED;
|
5
|
+
padding: 1em;
|
6
|
+
margin: 8px 0 0 0;
|
7
|
+
}
|
8
|
+
|
9
|
+
a {
|
10
|
+
color:#191919;
|
11
|
+
font-weight:bold;
|
12
|
+
outline: none;
|
13
|
+
}
|
2
14
|
|
3
15
|
span.cross-ref-title {
|
4
|
-
|
16
|
+
font-size: 140%;
|
5
17
|
}
|
6
18
|
span.cross-ref a {
|
7
19
|
text-decoration: none;
|
@@ -13,51 +25,56 @@ span.cross-ref {
|
|
13
25
|
padding: 0.5em;
|
14
26
|
overflow: hidden;
|
15
27
|
}
|
28
|
+
|
16
29
|
a.crossref-toggle {
|
17
30
|
text-decoration: none;
|
18
31
|
}
|
19
32
|
pre, code {
|
20
|
-
|
21
|
-
font-family:Monaco,"Courier New",monospace;
|
22
|
-
font-size:
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
span.marked1 {
|
35
|
-
background-color: rgb(190, 215, 205);
|
33
|
+
color: #000000;
|
34
|
+
font-family: "Bitstream Vera Sans Mono","Monaco","Courier New",monospace;
|
35
|
+
font-size: 95%;
|
36
|
+
line-height: 1.3em;
|
37
|
+
margin-top: 0;
|
38
|
+
margin-bottom: 0;
|
39
|
+
padding: 0;
|
40
|
+
word-wrap: break-word;
|
41
|
+
}
|
42
|
+
|
43
|
+
tr.marked td, span.marked, span.marked1 {
|
44
|
+
background-color: #DBDEBD;
|
45
|
+
}
|
46
|
+
|
47
|
+
span.marked, span.marked1 {
|
36
48
|
display: block;
|
37
49
|
}
|
50
|
+
|
38
51
|
tr.inferred td, span.inferred {
|
39
|
-
background-color:
|
52
|
+
background-color: #CFE6E0;
|
53
|
+
}
|
54
|
+
|
55
|
+
tr.inferred1 td, span.inferred1 {
|
56
|
+
background-color: #CFE6E0;
|
40
57
|
}
|
41
|
-
span.inferred1 {
|
42
|
-
background-color: rgb(255, 255, 240);
|
58
|
+
span.inferred, span.inferred1 {
|
43
59
|
display: block;
|
44
60
|
}
|
61
|
+
|
45
62
|
tr.uncovered td, span.uncovered {
|
46
63
|
background-color: rgb(225, 110, 110);
|
47
64
|
}
|
65
|
+
|
48
66
|
span.uncovered1 {
|
49
67
|
background-color: rgb(235, 120, 120);
|
50
68
|
display: block;
|
51
69
|
}
|
70
|
+
|
52
71
|
span.overview {
|
53
72
|
border-bottom: 8px solid black;
|
54
73
|
}
|
74
|
+
|
55
75
|
div.overview {
|
56
76
|
border-bottom: 8px solid black;
|
57
77
|
}
|
58
|
-
body {
|
59
|
-
font-family: verdana, arial, helvetica;
|
60
|
-
}
|
61
78
|
|
62
79
|
div.footer {
|
63
80
|
font-size: 68%;
|
@@ -68,6 +85,15 @@ h1, h2, h3, h4, h5, h6 {
|
|
68
85
|
margin-bottom: 0.5em;
|
69
86
|
}
|
70
87
|
|
88
|
+
h3 {
|
89
|
+
display: block;
|
90
|
+
margin: 0 0 20px 0;
|
91
|
+
padding-bottom: 20px;
|
92
|
+
font-size: 2.0em;
|
93
|
+
letter-spacing: -1px;
|
94
|
+
color: #333333;
|
95
|
+
}
|
96
|
+
|
71
97
|
h5 {
|
72
98
|
margin-top: 0.5em;
|
73
99
|
}
|
@@ -79,16 +105,6 @@ h5 {
|
|
79
105
|
div.separator {
|
80
106
|
height: 10px;
|
81
107
|
}
|
82
|
-
/* Commented out for better readability, esp. on IE */
|
83
|
-
/*
|
84
|
-
table tr td, table tr th {
|
85
|
-
font-size: 68%;
|
86
|
-
}
|
87
|
-
|
88
|
-
td.value table tr td {
|
89
|
-
font-size: 11px;
|
90
|
-
}
|
91
|
-
*/
|
92
108
|
|
93
109
|
table.percent_graph {
|
94
110
|
height: 12px;
|
@@ -131,6 +147,10 @@ table.report td.text {
|
|
131
147
|
border: #d0d0d0 1px solid;
|
132
148
|
}
|
133
149
|
|
150
|
+
table.report td {
|
151
|
+
font-size: 125%;
|
152
|
+
}
|
153
|
+
|
134
154
|
table.report td.value,
|
135
155
|
table.report td.lines_total,
|
136
156
|
table.report td.lines_code {
|
metadata
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relevance-rcov
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.3.
|
4
|
+
version: 0.8.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Relevance
|
8
8
|
- Chad Humphries (spicycode)
|
9
|
+
- Aaron Bedra (abedra)
|
9
10
|
- Mauricio Fernandez
|
10
11
|
autorequire:
|
11
12
|
bindir: bin
|
@@ -24,6 +25,7 @@ extra_rdoc_files:
|
|
24
25
|
- doc/readme_for_api
|
25
26
|
- doc/readme_for_rake
|
26
27
|
- doc/readme_for_vim
|
28
|
+
- doc/readme_for_emacs
|
27
29
|
files:
|
28
30
|
- bin/rcov
|
29
31
|
- lib/rcov.rb
|
@@ -46,7 +48,6 @@ files:
|
|
46
48
|
- ext/rcovrt/1.9/rcovrt.c
|
47
49
|
- ext/rcovrt/1.8/callsite.c
|
48
50
|
- ext/rcovrt/1.9/callsite.c
|
49
|
-
- LEGAL
|
50
51
|
- LICENSE
|
51
52
|
- Rakefile
|
52
53
|
- doc/readme_for_rake
|
data/LEGAL
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
|
2
|
-
LEGAL NOTICE
|
3
|
-
------------
|
4
|
-
|
5
|
-
rcov itself is subject to the terms specified in LICENSE.
|
6
|
-
|
7
|
-
rcov includes xx-0.1.0, which can be redistributed and used under the
|
8
|
-
following conditions:
|
9
|
-
|
10
|
-
|
11
|
-
ePark Labs Public License version 1
|
12
|
-
Copyright (c) 2005, ePark Labs, Inc. and contributors
|
13
|
-
All rights reserved.
|
14
|
-
|
15
|
-
Redistribution and use in source and binary forms, with or without modification,
|
16
|
-
are permitted provided that the following conditions are met:
|
17
|
-
|
18
|
-
1. Redistributions of source code must retain the above copyright notice, this
|
19
|
-
list of conditions and the following disclaimer.
|
20
|
-
2. Redistributions in binary form must reproduce the above copyright notice,
|
21
|
-
this list of conditions and the following disclaimer in the documentation
|
22
|
-
and/or other materials provided with the distribution.
|
23
|
-
3. Neither the name of ePark Labs nor the names of its contributors may be
|
24
|
-
used to endorse or promote products derived from this software without
|
25
|
-
specific prior written permission.
|
26
|
-
|
27
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
28
|
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
29
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
30
|
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
31
|
-
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
32
|
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
33
|
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
34
|
-
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
35
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
36
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|