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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 14131ba74a296eb9c7609a5f95f69b8d9c05a952
4
- data.tar.gz: be87208b09ede61474983dec536136bc6d233edc
3
+ metadata.gz: c0ae613632102f4ca5b918eba005d48810e015a0
4
+ data.tar.gz: 0cf030b143c1c4303689cff3381d202e9be782ee
5
5
  SHA512:
6
- metadata.gz: e70f7b1a84cd033e39ab73cbe104df9a3a87d36077ed5d48a168076eed95f4c9a98948591c89c3d61afea62c92d2d0442afe27459cd9e158654775da943ecb34
7
- data.tar.gz: 58fb726c385718abcd695c3dac8ee0f13dd7da6347c3c2e59f4b982793f92590598ef815a6be9922a3241e1cfd56221fdfe4e0f689562da1ddccdea5fc120abb
6
+ metadata.gz: b826c4e624e5e33801e1c3797b44c2ac7d9c266ec8eb9e1a678147ac9761036f15780ebbd1e32416a4b20e66fa6eac0d454bdbaa8e6fbc3ff1794f74f16b2536
7
+ data.tar.gz: ba19b5cbf97e8d08b2aee34abe5c2c42cf9114ad9047bc63ad701f67082bd020d44aa20bd2245a7c12d2e0962a2c112fa19b856a439a333990b682bafa06dbda
@@ -1,5 +1,63 @@
1
- body {background-color:black;}
2
- p {color: white;}
3
- .results p {color: black}
4
- .success {background-color:#00ff00; margin: 10px 0 10px 0;}
5
- .failure {background-color:#ff0512; margin: 10px 0 10px 0;}
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
- #status-code
5
- - @responses.each do |uri, code|
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
@@ -1,3 +1,3 @@
1
1
  module Eir
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
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.2
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-12 00:00:00.000000000 Z
11
+ date: 2014-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client