jahtml_formatter 1.0.3 → 1.0.4
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.
- data/jahtml_formatter.gemspec +1 -1
- data/lib/jahtml_printer.rb +2 -14
- metadata +1 -1
data/jahtml_formatter.gemspec
CHANGED
data/lib/jahtml_printer.rb
CHANGED
|
@@ -107,7 +107,7 @@ require 'erb'
|
|
|
107
107
|
|
|
108
108
|
<div id="rspec-header">
|
|
109
109
|
<div id="label">
|
|
110
|
-
<h1>#{File.basename(`git rev-parse --show-toplevel`)},
|
|
110
|
+
<h1>#{File.basename(`git rev-parse --show-toplevel`)}, Software Test Report</h1>
|
|
111
111
|
</div>
|
|
112
112
|
|
|
113
113
|
<div id="summary">
|
|
@@ -199,7 +199,7 @@ EOF
|
|
|
199
199
|
|
|
200
200
|
GLOBAL_STYLES = <<-EOF
|
|
201
201
|
#rspec-header {
|
|
202
|
-
color: #000;
|
|
202
|
+
color: #000; margin-bottom: 1em; border-top: 1em solid #65C400;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
.rspec-report h1 {
|
|
@@ -207,24 +207,12 @@ EOF
|
|
|
207
207
|
padding: 10px;
|
|
208
208
|
font-family: "Lucida Grande", Helvetica, sans-serif;
|
|
209
209
|
font-size: 1.8em;
|
|
210
|
-
position: absolute;
|
|
211
210
|
}
|
|
212
211
|
|
|
213
|
-
#label {
|
|
214
|
-
float:left;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
#display-filters {
|
|
218
|
-
float:left;
|
|
219
|
-
padding: 28px 0 0 40%;
|
|
220
|
-
font-family: "Lucida Grande", Helvetica, sans-serif;
|
|
221
|
-
}
|
|
222
212
|
|
|
223
213
|
#summary {
|
|
224
|
-
float:right;
|
|
225
214
|
padding: 5px 10px;
|
|
226
215
|
font-family: "Lucida Grande", Helvetica, sans-serif;
|
|
227
|
-
text-align: right;
|
|
228
216
|
}
|
|
229
217
|
|
|
230
218
|
#summary p {
|