deimos 0.2.8 → 0.2.9

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: 17a40f67812084407c499920df0764fc3be8c16510fec55c79878fd934beb2fb
4
- data.tar.gz: 41f903f78686b74f7ca02b0790a20536f4cc1d4d8a8b013737169e391735ad5e
3
+ metadata.gz: 184f10421191b50e7c78d4152d95d169c4e5d91b78aa2f7640f01f400a1d58c0
4
+ data.tar.gz: d556738b48e241816a755a4271c61185278dca6b4935c0f934d8e3ecca6be428
5
5
  SHA512:
6
- metadata.gz: 5a417d5ae7b6d65b48a3c7300c488a6fc6754500bc4cb9c129a6e49e6327841ae5fbfa122a91bc2ea8f81c6c4bfb816313e0df5e02ccac177851d3e82ff8774f
7
- data.tar.gz: 4853ffa98525c602d4f492d89f891622c521ab2dd4819695cacf55d02b4a2e6dcdddd69904afe3044526d49d8ba7195e087c47d8fe12bc1c483f123cdcb65c20
6
+ metadata.gz: 285076d441f1d4b8a58fab013b8bab95e0c04be70eb25abda0c61b1819b820fb28c7e156efdbb665edcb454e966f11b1cfd0796b258347d7b7a16c0e3a48d7e1
7
+ data.tar.gz: 1a45f75180326b49407e052d60e7317effc3d7039728201a4890712f3c992adaf4ccdf95ca98b97e86ef95f6f0875a5623166a7502fb0455d374edef2799175a
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- deimos (0.2.8)
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.2.1)
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.12.0)
20
+ backports (3.13.0)
21
21
  coderay (1.1.2)
22
22
  concurrent-ruby (1.1.5)
23
23
  diff-lcs (1.3)
@@ -6,7 +6,7 @@ require "sinatra/json"
6
6
  require 'webrick'
7
7
  require 'logger'
8
8
  require 'webrick'
9
- require 'concurrent-ruby'
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)
@@ -1,3 +1,3 @@
1
1
  module Deimos
2
- VERSION = "0.2.8"
2
+ VERSION = "0.2.9"
3
3
  end
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.8
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-03-18 00:00:00.000000000 Z
11
+ date: 2019-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sinatra