simplecov-html 0.12.2 → 0.13.0
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.
- checksums.yaml +4 -4
- data/.tool-versions +1 -1
- data/CHANGELOG.md +30 -3
- data/README.md +1 -1
- data/Rakefile +12 -3
- data/lib/simplecov-html/version.rb +1 -1
- data/lib/simplecov-html.rb +39 -11
- data/public/application.css +1 -1
- data/public/application.js +7 -7
- data/views/layout.erb +2 -3
- data/views/source_file.erb +5 -2
- metadata +7 -31
- data/.gitignore +0 -26
- data/.rubocop.yml +0 -79
- data/.travis.yml +0 -25
- data/Gemfile +0 -27
- data/Gemfile.lock +0 -68
- data/Guardfile +0 -14
- data/assets/javascripts/application.js +0 -122
- data/assets/javascripts/libraries/jquery-3.4.1.js +0 -10598
- data/assets/javascripts/plugins/highlight.pack.js +0 -1
- data/assets/javascripts/plugins/jquery.colorbox.js +0 -1105
- data/assets/javascripts/plugins/jquery.dataTables.js +0 -15008
- data/assets/javascripts/plugins/jquery.timeago.js +0 -232
- data/assets/stylesheets/application.css +0 -3
- data/assets/stylesheets/plugins/datatables.css +0 -462
- data/assets/stylesheets/plugins/highlight.css +0 -129
- data/assets/stylesheets/plugins/jquery-ui-1.8.4.custom.css +0 -295
- data/assets/stylesheets/plugins/jquery.colorbox.css +0 -52
- data/assets/stylesheets/reset.css +0 -103
- data/assets/stylesheets/screen.css.sass +0 -242
- data/simplecov-html.gemspec +0 -23
- data/test/helper.rb +0 -6
- data/test/test_simple_cov-html.rb +0 -10
@@ -1,242 +0,0 @@
|
|
1
|
-
#loading
|
2
|
-
position: fixed
|
3
|
-
left: 40%
|
4
|
-
top: 50%
|
5
|
-
|
6
|
-
a
|
7
|
-
color: #333
|
8
|
-
text-decoration: none
|
9
|
-
&:hover
|
10
|
-
color: #000
|
11
|
-
text-decoration: underline
|
12
|
-
|
13
|
-
body
|
14
|
-
font-family: "Lucida Grande", Helvetica, "Helvetica Neue", Arial, sans-serif
|
15
|
-
padding: 12px
|
16
|
-
background-color: #333
|
17
|
-
|
18
|
-
h1, h2, h3, h4
|
19
|
-
color: #1C2324
|
20
|
-
margin: 0
|
21
|
-
padding: 0
|
22
|
-
margin-bottom: 12px
|
23
|
-
|
24
|
-
table
|
25
|
-
width: 100%
|
26
|
-
|
27
|
-
#content
|
28
|
-
clear: left
|
29
|
-
background-color: white
|
30
|
-
border: 2px solid #ddd
|
31
|
-
border-top: 8px solid #ddd
|
32
|
-
padding: 18px
|
33
|
-
-webkit-border-bottom-left-radius: 5px
|
34
|
-
-webkit-border-bottom-right-radius: 5px
|
35
|
-
-webkit-border-top-right-radius: 5px
|
36
|
-
-moz-border-radius-bottomleft: 5px
|
37
|
-
-moz-border-radius-bottomright: 5px
|
38
|
-
-moz-border-radius-topright: 5px
|
39
|
-
border-bottom-left-radius: 5px
|
40
|
-
border-bottom-right-radius: 5px
|
41
|
-
border-top-right-radius: 5px
|
42
|
-
|
43
|
-
.dataTables_filter, .dataTables_info
|
44
|
-
padding: 2px 6px
|
45
|
-
|
46
|
-
abbr.timeago
|
47
|
-
text-decoration: none
|
48
|
-
border: none
|
49
|
-
font-weight: bold
|
50
|
-
|
51
|
-
.timestamp
|
52
|
-
float: right
|
53
|
-
color: #ddd
|
54
|
-
|
55
|
-
.group_tabs
|
56
|
-
list-style: none
|
57
|
-
float: left
|
58
|
-
margin: 0
|
59
|
-
padding: 0
|
60
|
-
li
|
61
|
-
display: inline
|
62
|
-
float: left
|
63
|
-
a
|
64
|
-
font-family: Helvetica, Arial, sans-serif
|
65
|
-
display: block
|
66
|
-
float: left
|
67
|
-
text-decoration: none
|
68
|
-
padding: 4px 8px
|
69
|
-
background-color: #aaa
|
70
|
-
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dddddd), to(#aaaaaa))
|
71
|
-
background: -moz-linear-gradient(#dddddd, #aaaaaa)
|
72
|
-
background: linear-gradient(#dddddd, #aaaaaa)
|
73
|
-
text-shadow: #e5e5e5 1px 1px 0px
|
74
|
-
border-bottom: none
|
75
|
-
color: #333
|
76
|
-
font-weight: bold
|
77
|
-
margin-right: 8px
|
78
|
-
border-top: 1px solid #efefef
|
79
|
-
-webkit-border-top-left-radius: 2px
|
80
|
-
-webkit-border-top-right-radius: 2px
|
81
|
-
-moz-border-radius-topleft: 2px
|
82
|
-
-moz-border-radius-topright: 2px
|
83
|
-
border-top-left-radius: 2px
|
84
|
-
border-top-right-radius: 2px
|
85
|
-
&:hover
|
86
|
-
background-color: #ccc
|
87
|
-
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#eeeeee), to(#aaaaaa))
|
88
|
-
background: -moz-linear-gradient(#eeeeee, #aaaaaa)
|
89
|
-
background: linear-gradient(#eeeeee, #aaaaaa)
|
90
|
-
&:active
|
91
|
-
padding-top: 5px
|
92
|
-
padding-bottom: 3px
|
93
|
-
&.active a
|
94
|
-
color: black
|
95
|
-
text-shadow: #fff 1px 1px 0px
|
96
|
-
background-color: #ddd
|
97
|
-
background: -webkit-gradient(linear, 0 0, 0 bottom, from(white), to(#dddddd))
|
98
|
-
background: -moz-linear-gradient(white, #dddddd)
|
99
|
-
background: linear-gradient(white, #dddddd)
|
100
|
-
|
101
|
-
.file_list
|
102
|
-
margin-bottom: 18px
|
103
|
-
|
104
|
-
.file_list--responsive
|
105
|
-
overflow-x: auto
|
106
|
-
// not the nicest fix for the y scrollbar coming up, but workable :shrug:
|
107
|
-
overflow-y: hidden
|
108
|
-
|
109
|
-
a.src_link
|
110
|
-
background: url('./magnify.png') no-repeat left 50%
|
111
|
-
padding-left: 18px
|
112
|
-
|
113
|
-
tr, td
|
114
|
-
margin: 0
|
115
|
-
padding: 0
|
116
|
-
|
117
|
-
th
|
118
|
-
white-space: nowrap
|
119
|
-
&.ui-state-default
|
120
|
-
cursor: pointer
|
121
|
-
span.ui-icon
|
122
|
-
float: left
|
123
|
-
|
124
|
-
td
|
125
|
-
padding: 4px 8px
|
126
|
-
&.strong
|
127
|
-
font-weight: bold
|
128
|
-
|
129
|
-
.cell--number
|
130
|
-
text-align: right
|
131
|
-
|
132
|
-
.source_table
|
133
|
-
h3, h4
|
134
|
-
padding: 0
|
135
|
-
margin: 0
|
136
|
-
margin-bottom: 4px
|
137
|
-
.header
|
138
|
-
padding: 10px
|
139
|
-
pre
|
140
|
-
margin: 0
|
141
|
-
padding: 0
|
142
|
-
white-space: normal
|
143
|
-
color: #000
|
144
|
-
font-family: "Monaco", "Inconsolata", "Consolas", monospace
|
145
|
-
code
|
146
|
-
color: #000
|
147
|
-
font-family: "Monaco", "Inconsolata", "Consolas", monospace
|
148
|
-
pre
|
149
|
-
background-color: #333
|
150
|
-
ol
|
151
|
-
margin: 0px
|
152
|
-
padding: 0px
|
153
|
-
margin-left: 45px
|
154
|
-
font-size: 12px
|
155
|
-
color: white
|
156
|
-
li
|
157
|
-
margin: 0px
|
158
|
-
padding: 2px 6px
|
159
|
-
border-left: 5px solid white
|
160
|
-
code
|
161
|
-
white-space: pre
|
162
|
-
white-space: pre-wrap
|
163
|
-
.hits
|
164
|
-
float: right
|
165
|
-
margin-left: 10px
|
166
|
-
padding: 2px 4px
|
167
|
-
background-color: #444
|
168
|
-
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#222222), to(#666666))
|
169
|
-
background: -moz-linear-gradient(#222222, #666666)
|
170
|
-
background: linear-gradient(#222222, #666666)
|
171
|
-
color: white
|
172
|
-
font-family: Helvetica, "Helvetica Neue", Arial, sans-serif
|
173
|
-
font-size: 10px
|
174
|
-
font-weight: bold
|
175
|
-
text-align: center
|
176
|
-
border-radius: 6px
|
177
|
-
|
178
|
-
#footer
|
179
|
-
color: #ddd
|
180
|
-
font-size: 12px
|
181
|
-
font-weight: bold
|
182
|
-
margin-top: 12px
|
183
|
-
text-align: right
|
184
|
-
a
|
185
|
-
color: #eee
|
186
|
-
text-decoration: underline
|
187
|
-
&:hover
|
188
|
-
color: #fff
|
189
|
-
text-decoration: none
|
190
|
-
|
191
|
-
.green
|
192
|
-
color: #090
|
193
|
-
|
194
|
-
.red
|
195
|
-
color: #900
|
196
|
-
|
197
|
-
.yellow
|
198
|
-
color: #da0
|
199
|
-
.blue
|
200
|
-
color: blue
|
201
|
-
|
202
|
-
// Overriding the css reset
|
203
|
-
thead
|
204
|
-
th
|
205
|
-
background: white
|
206
|
-
|
207
|
-
.source_table
|
208
|
-
.covered
|
209
|
-
border-color: #090
|
210
|
-
.missed
|
211
|
-
border-color: #900
|
212
|
-
.never
|
213
|
-
border-color: black
|
214
|
-
.skipped
|
215
|
-
border-color: #fc0
|
216
|
-
.missed-branch
|
217
|
-
border-color: #bf0000
|
218
|
-
.covered
|
219
|
-
&:nth-child(odd)
|
220
|
-
background-color: #CDF2CD
|
221
|
-
&:nth-child(even)
|
222
|
-
background-color: #DBF2DB
|
223
|
-
.missed
|
224
|
-
&:nth-child(odd)
|
225
|
-
background-color: #F7C0C0
|
226
|
-
&:nth-child(even)
|
227
|
-
background-color: #F7CFCF
|
228
|
-
.never
|
229
|
-
&:nth-child(odd)
|
230
|
-
background-color: #efefef
|
231
|
-
&:nth-child(even)
|
232
|
-
background-color: #f4f4f4
|
233
|
-
.skipped
|
234
|
-
&:nth-child(odd)
|
235
|
-
background-color: #FBF0C0
|
236
|
-
&:nth-child(even)
|
237
|
-
background-color: #FBFfCf
|
238
|
-
.missed-branch
|
239
|
-
&:nth-child(odd)
|
240
|
-
background-color: #cc8e8e
|
241
|
-
&:nth-child(even)
|
242
|
-
background-color: #cc6e6e
|
data/simplecov-html.gemspec
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
|
4
|
-
require "simplecov-html/version"
|
5
|
-
|
6
|
-
Gem::Specification.new do |gem|
|
7
|
-
gem.name = "simplecov-html"
|
8
|
-
gem.version = SimpleCov::Formatter::HTMLFormatter::VERSION
|
9
|
-
gem.platform = Gem::Platform::RUBY
|
10
|
-
gem.authors = ["Christoph Olszowka"]
|
11
|
-
gem.email = ["christoph at olszowka de"]
|
12
|
-
gem.homepage = "https://github.com/colszowka/simplecov-html"
|
13
|
-
gem.description = %(Default HTML formatter for SimpleCov code coverage tool for ruby 2.4+)
|
14
|
-
gem.summary = gem.description
|
15
|
-
gem.license = "MIT"
|
16
|
-
|
17
|
-
gem.required_ruby_version = "~> 2.4"
|
18
|
-
|
19
|
-
gem.files = `git ls-files`.split("\n")
|
20
|
-
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
21
|
-
gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
22
|
-
gem.require_paths = ["lib"]
|
23
|
-
end
|
data/test/helper.rb
DELETED