health_bit 0.1.0 → 0.1.1

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
  SHA256:
3
- metadata.gz: f324e56b8bd7bebc16987f7fc231712a41cc7068c61422deda0c5e6f50a8b6b6
4
- data.tar.gz: e88622bf2101e68697127b253c0a746af19be3d9c589707afe3f3d568b26246f
3
+ metadata.gz: d333c6850f3f0ef9daa5c401cc3a5d53c33f0d82e9b8b439eaea8d81844cef19
4
+ data.tar.gz: 6cf5866da936b0ac7a2f86a2ab1eabe2f4e8872e9ab7fc27db77c540d215fad8
5
5
  SHA512:
6
- metadata.gz: 6f63e601e275aba3c441b2425c0b1ccf25377ac317b10617815632e0da4826ad069d81f85a9b7415bd7b4cf7eae760e5abfa48db6f9b43c493619a25bc899dfa
7
- data.tar.gz: 15a4c2b5ed7b6f4595010fdcfede4294098db2c1032ddd8556db7bc131c01d3afd53797e7b679af729ad2eeb6ed5e520ac08342456a97fba3eb2047bf93ea526
6
+ metadata.gz: 802b0cf7cf87d4db34717d28473d70d05d5b3652d1d94be639afc63f57d9fd203f66f7e179c19412df8f545a27bce1649249dc345095fa5602113ebb3926c04b
7
+ data.tar.gz: dfa5c15d2a38d9015d86f0ffdc21d095ab302eed925271b24005aabac582d3af72e73092f5ac573f17e7243643c390e0004e49980ad7b7628ed0da1a6fe974a9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- health_bit (0.1.0)
4
+ health_bit (0.1.1)
5
5
  rack
6
6
 
7
7
  GEM
data/health_bit.gemspec CHANGED
@@ -8,14 +8,14 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Aliaksandr Shylau']
9
9
  spec.email = %w[alex.shilov.by@gmail.com]
10
10
 
11
- spec.summary = ''
12
- spec.description = ''
11
+ spec.summary = 'Tiny health check of Rack apps like Rails, Sinatra'
12
+ spec.description = 'Tiny health check of Rack apps like Rails, Sinatra for use with uptime checking systems like Kubernetes, Docker or Uptimerobot'
13
13
  spec.homepage = 'https://github.com/shlima/health_bit'
14
14
  spec.license = 'MIT'
15
15
  spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
16
16
  spec.metadata['homepage_uri'] = spec.homepage
17
17
  spec.metadata['source_code_uri'] = spec.homepage
18
- spec.metadata['changelog_uri'] = spec.homepage
18
+ spec.metadata['changelog_uri'] = 'https://github.com/shlima/health_bit/releases'
19
19
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
20
20
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
21
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HealthBit
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: health_bit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aliaksandr Shylau
@@ -24,7 +24,8 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
- description: ''
27
+ description: Tiny health check of Rack apps like Rails, Sinatra for use with uptime
28
+ checking systems like Kubernetes, Docker or Uptimerobot
28
29
  email:
29
30
  - alex.shilov.by@gmail.com
30
31
  executables: []
@@ -55,7 +56,7 @@ licenses:
55
56
  metadata:
56
57
  homepage_uri: https://github.com/shlima/health_bit
57
58
  source_code_uri: https://github.com/shlima/health_bit
58
- changelog_uri: https://github.com/shlima/health_bit
59
+ changelog_uri: https://github.com/shlima/health_bit/releases
59
60
  post_install_message:
60
61
  rdoc_options: []
61
62
  require_paths:
@@ -74,5 +75,5 @@ requirements: []
74
75
  rubygems_version: 3.1.2
75
76
  signing_key:
76
77
  specification_version: 4
77
- summary: ''
78
+ summary: Tiny health check of Rack apps like Rails, Sinatra
78
79
  test_files: []