cukeregator 0.1.1 → 0.1.2
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/README.textile +1 -1
- data/Rakefile +1 -1
- data/lib/cukeregator/style.css +40 -3
- metadata +4 -4
data/README.textile
CHANGED
@@ -46,5 +46,5 @@ h3. We'll See
|
|
46
46
|
|
47
47
|
* dump Nokogiri for Haml? (Would have to hand parse in the reader without Nokogiri.)
|
48
48
|
* enable STDIN as source of file list input in the bin?
|
49
|
-
* Rake task as cmd line
|
49
|
+
* Rake task as cmd line convenience?
|
50
50
|
* path list option for cases when a glob won't work?
|
data/Rakefile
CHANGED
data/lib/cukeregator/style.css
CHANGED
@@ -1,3 +1,40 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
body
|
2
|
+
{ background:#696969;}
|
3
|
+
p {
|
4
|
+
font-family: Arial;
|
5
|
+
}
|
6
|
+
|
7
|
+
div{
|
8
|
+
margin-top: 10px;
|
9
|
+
margin-bottom: 10px;
|
10
|
+
padding: 10px 20px;
|
11
|
+
-moz-border-radius: 20px;
|
12
|
+
-webkit-border-radius: 20px;
|
13
|
+
-khtml-border-radius: 20px;
|
14
|
+
border-radius: 20px; }
|
15
|
+
|
16
|
+
.header{
|
17
|
+
color: #FFFFFF;
|
18
|
+
font-size: 24px;
|
19
|
+
margin: 0px;
|
20
|
+
padding: 0px 10px;
|
21
|
+
}
|
22
|
+
.passed {
|
23
|
+
background-color: #308014;
|
24
|
+
font-size: 14px;
|
25
|
+
color: #FFFFFF;
|
26
|
+
}
|
27
|
+
.failed {
|
28
|
+
background-color: #8B0000;
|
29
|
+
font-size: 14px;
|
30
|
+
color: #FFFFFF;
|
31
|
+
}
|
32
|
+
.pending {
|
33
|
+
background-color: #E3CF57;
|
34
|
+
font-size: 14px;
|
35
|
+
}
|
36
|
+
|
37
|
+
a:link {
|
38
|
+
font-family: Arial;
|
39
|
+
color: #6495ED;
|
40
|
+
}
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cukeregator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 31
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 2
|
10
|
+
version: 0.1.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Tim Camper
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-04-11 00:00:00 -04:00
|
19
19
|
default_executable: cukeregator
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|