deimos 0.2.8 → 0.2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -3
- data/lib/deimos.rb +3 -3
- data/lib/deimos/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 184f10421191b50e7c78d4152d95d169c4e5d91b78aa2f7640f01f400a1d58c0
|
4
|
+
data.tar.gz: d556738b48e241816a755a4271c61185278dca6b4935c0f934d8e3ecca6be428
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 285076d441f1d4b8a58fab013b8bab95e0c04be70eb25abda0c61b1819b820fb28c7e156efdbb665edcb454e966f11b1cfd0796b258347d7b7a16c0e3a48d7e1
|
7
|
+
data.tar.gz: 1a45f75180326b49407e052d60e7317effc3d7039728201a4890712f3c992adaf4ccdf95ca98b97e86ef95f6f0875a5623166a7502fb0455d374edef2799175a
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
deimos (0.2.
|
4
|
+
deimos (0.2.9)
|
5
5
|
activesupport
|
6
6
|
concurrent-ruby (~> 1.1.0)
|
7
7
|
huyegger
|
@@ -12,12 +12,12 @@ PATH
|
|
12
12
|
GEM
|
13
13
|
remote: https://rubygems.org/
|
14
14
|
specs:
|
15
|
-
activesupport (5.2.
|
15
|
+
activesupport (5.2.3)
|
16
16
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
17
|
i18n (>= 0.7, < 2)
|
18
18
|
minitest (~> 5.1)
|
19
19
|
tzinfo (~> 1.1)
|
20
|
-
backports (3.
|
20
|
+
backports (3.13.0)
|
21
21
|
coderay (1.1.2)
|
22
22
|
concurrent-ruby (1.1.5)
|
23
23
|
diff-lcs (1.3)
|
data/lib/deimos.rb
CHANGED
@@ -6,7 +6,7 @@ require "sinatra/json"
|
|
6
6
|
require 'webrick'
|
7
7
|
require 'logger'
|
8
8
|
require 'webrick'
|
9
|
-
require 'concurrent
|
9
|
+
require 'concurrent'
|
10
10
|
require 'prometheus/client'
|
11
11
|
require 'prometheus/middleware/exporter'
|
12
12
|
|
@@ -21,7 +21,7 @@ module Deimos
|
|
21
21
|
module_function
|
22
22
|
|
23
23
|
def boot!
|
24
|
-
Thread.new do
|
24
|
+
Thread.new do
|
25
25
|
::Rack::Handler::WEBrick.run(application, {
|
26
26
|
Host: Deimos.config.bind,
|
27
27
|
Port: Deimos.config.port,
|
@@ -58,7 +58,7 @@ module Deimos
|
|
58
58
|
|
59
59
|
def applications
|
60
60
|
load! unless loaded?
|
61
|
-
|
61
|
+
|
62
62
|
@applications ||= {
|
63
63
|
"/status" => Deimos::Endpoints::Status.new(status: status),
|
64
64
|
"/metrics" => Deimos::Endpoints::Metrics.new(metrics: metrics)
|
data/lib/deimos/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deimos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Carlile
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sinatra
|