eir 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/eir/app/public/style.css +63 -5
- data/lib/eir/app/views/dashboard.haml +3 -3
- data/lib/eir/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0ae613632102f4ca5b918eba005d48810e015a0
|
4
|
+
data.tar.gz: 0cf030b143c1c4303689cff3381d202e9be782ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b826c4e624e5e33801e1c3797b44c2ac7d9c266ec8eb9e1a678147ac9761036f15780ebbd1e32416a4b20e66fa6eac0d454bdbaa8e6fbc3ff1794f74f16b2536
|
7
|
+
data.tar.gz: ba19b5cbf97e8d08b2aee34abe5c2c42cf9114ad9047bc63ad701f67082bd020d44aa20bd2245a7c12d2e0962a2c112fa19b856a439a333990b682bafa06dbda
|
@@ -1,5 +1,63 @@
|
|
1
|
-
body {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
body {
|
2
|
+
background-color: black;
|
3
|
+
font-family: sans-serif;
|
4
|
+
font-weight: bold;
|
5
|
+
overflow: hidden;
|
6
|
+
}
|
7
|
+
|
8
|
+
html, body {
|
9
|
+
padding: 0;
|
10
|
+
margin: 0;
|
11
|
+
}
|
12
|
+
|
13
|
+
p {
|
14
|
+
color: white;
|
15
|
+
}
|
16
|
+
|
17
|
+
.failure {
|
18
|
+
background-color: #ff0512;
|
19
|
+
border-radius: 20px;
|
20
|
+
-moz-border-radius: 20px;
|
21
|
+
background-image: -webkit-gradient(
|
22
|
+
linear,
|
23
|
+
left top,
|
24
|
+
left bottom,
|
25
|
+
color-stop(0, rgba(163, 163, 163, 0.5)),
|
26
|
+
color-stop(0.5, rgba(113, 113, 113, 0.5)),
|
27
|
+
color-stop(0.5, rgba(68, 68, 68, 0.5)),
|
28
|
+
color-stop(1, rgba(110, 110, 110, 0.5))
|
29
|
+
);
|
30
|
+
background-image: -moz-linear-gradient(
|
31
|
+
center top,
|
32
|
+
rgba(163, 163, 163, 0.5) 0%,
|
33
|
+
rgba(113, 113, 113, 0.5) 50%,
|
34
|
+
rgba(68, 68, 68, 0.5) 50%,
|
35
|
+
rgba(110, 110, 110, 0.5) 100%
|
36
|
+
);
|
37
|
+
}
|
38
|
+
|
39
|
+
.success {
|
40
|
+
background-color: #16c200;
|
41
|
+
border-radius: 20px;
|
42
|
+
-moz-border-radius: 20px;
|
43
|
+
background-image: -webkit-gradient(
|
44
|
+
linear,
|
45
|
+
left top,
|
46
|
+
left bottom,
|
47
|
+
color-stop(0, rgba(163, 163, 163, 0.5)),
|
48
|
+
color-stop(0.5, rgba(113, 113, 113, 0.5)),
|
49
|
+
color-stop(0.5, rgba(68, 68, 68, 0.5)),
|
50
|
+
color-stop(1, rgba(110, 110, 110, 0.5))
|
51
|
+
);
|
52
|
+
background-image: -moz-linear-gradient(
|
53
|
+
center top,
|
54
|
+
rgba(163, 163, 163, 0.5) 0%,
|
55
|
+
rgba(113, 113, 113, 0.5) 50%,
|
56
|
+
rgba(68, 68, 68, 0.5) 50%,
|
57
|
+
rgba(110, 110, 110, 0.5) 100%
|
58
|
+
);
|
59
|
+
}
|
60
|
+
|
61
|
+
.result {
|
62
|
+
text-shadow: 0px -2px black;
|
63
|
+
}
|
@@ -1,8 +1,8 @@
|
|
1
|
+
%p= "Last updated: #{Time.now.strftime('%H:%M:%S')}"
|
1
2
|
#content
|
2
|
-
%p= "Last updated: #{Time.now.strftime('%H:%M:%S')}"
|
3
3
|
.results
|
4
|
-
|
5
|
-
|
4
|
+
- @responses.each do |uri, code|
|
5
|
+
.result
|
6
6
|
- if code == 200
|
7
7
|
.success
|
8
8
|
%p= uri
|
data/lib/eir/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eir
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Snape
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-06-
|
11
|
+
date: 2014-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|