site_hook 0.6.18 → 0.6.19

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 73db7cac6826d4bcde917e5187e4ffbb496080cf118fce0d68c48a1e7fa3d267
4
- data.tar.gz: f92529505a9cc65bd14da5e62fe23e5f1a2d741e296fc7589807ecdfc40c9448
3
+ metadata.gz: d4bac39a05ecc71585ed6c46db337f651709a909346fb8f1cd7ece14e4ec187f
4
+ data.tar.gz: d0f676b4134992ce1000e2eb110ae13dc3bc5fcc9e0c2566b2ae3f5169b5fb61
5
5
  SHA512:
6
- metadata.gz: 3a7c7c4f260ccd4ad48101692b886e3e609ab42d0d26ed6e6a7a42cc9f110ebf3358821f54927c78b0b6b42d5383b4e5997dee1765c60775c09cf2a728a09161
7
- data.tar.gz: 212ba0afe329fbc46ff9033eb1d6cb6aeb04d8cf025e0864a42fbe18de9bc25f090e900496386c25ee6645d8540ca7129eabeb6bf30d8dbd6285b1e20a226024
6
+ metadata.gz: 76c5c681b64b7ec9789a1699b1d193391a0c80386a9585b11e8ad16e69b41acc7afa8789d4a802956d7c3a7eb834fa8c5d948416a2fdcca4a87585c5d54c20c9
7
+ data.tar.gz: 3c3a9a05d9586f6db5d478b6772fce4369b9b447ecf189299a48874fc4dfacfcc221ef6bd87cbc0c379803e443dddb177577aac34d915cd7fb98b09870eb565d
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- site_hook (0.6.14)
4
+ site_hook (0.6.18)
5
5
  activesupport (~> 5.1)
6
6
  git (~> 1.3)
7
7
  haml (~> 5.0)
@@ -1,9 +1,26 @@
1
1
  body {
2
- background-color: #7a7a7a;
2
+ background-color: #000;
3
+ }
4
+ h1 {
5
+ color: darkgreen;
6
+ }
7
+ .list-group {
8
+ border-radius: 5px;
3
9
  }
4
10
  .list-group-item {
5
11
  background-color: rgb(0, 51, 2);
12
+ border-radius: 5px;
13
+ &:hover {
14
+ background-color: #3a3a3a;
15
+ }
16
+ }
17
+ a {
18
+ color: darkgreen !important;
19
+ text-decoration-color: darkgreen !important;
6
20
  &:hover {
7
- background-color: #000000dc
21
+ color: green !important;
22
+ }
23
+ &:focus {
24
+ color: green !important;
8
25
  }
9
26
  }
@@ -1,3 +1,3 @@
1
1
  module SiteHook
2
- VERSION = "0.6.18"
2
+ VERSION = "0.6.19"
3
3
  end
@@ -6,18 +6,18 @@
6
6
  %link{rel: "stylesheet", href: "https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css", integrity: "sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm", crossorigin: "anonymous"}
7
7
  %link{rel: "stylesheet", href: "/css/styles.css"}
8
8
 
9
- %title Hello, world!
10
- %body.bg-dark
9
+ %title Public site_hook Webhooks
10
+ %body
11
11
  %header.d-flex
12
- %h1.text-dark.d-flex.mx-auto Webhooks
12
+ %h1.d-flex.mx-auto Webhooks
13
13
 
14
- #content.wrapper.card.bg-dark
14
+ #content
15
15
  =yield
16
+ %hr
16
17
  %footer.container-fluid
17
18
  %p.d-flex.justify-content-end.text-light
18
- Powered by
19
- %a{href: "https://iotaspencer.me/projects/site_hook"} #{" SiteHook "}
20
- v#{SiteHook::VERSION}
19
+ %span.pr-1 Powered by
20
+ %a{href: "https://iotaspencer.me/projects/site_hook"} SiteHook v#{SiteHook::VERSION}
21
21
 
22
22
  %script{src: "https://code.jquery.com/jquery-3.2.1.slim.min.js", integrity: "sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN", crossorigin: "anonymous"}
23
23
  %script{src: "https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js", integrity: "sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q", crossorigin: "anonymous"}
@@ -2,6 +2,6 @@
2
2
  - projects.each do |name, hsh|
3
3
  - if hsh.fetch('private', nil).nil? or hsh.fetch('private', nil) == false
4
4
  %a.list-group-item{id: "#{hsh['repo'].sub(/\./, '-').sub(/\//, '-')}", href: "https://#{hsh['host']}/#{hsh['repo']}"}
5
- #{name}
5
+ %p.display-6 #{name}
6
6
  %span.badge.badge-pill.badge-dark
7
7
  https://#{hsh['host']}/#{hsh['repo']}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: site_hook
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.18
4
+ version: 0.6.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ken Spencer