file-based-healthcheck 0.2.0 → 0.3.0

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: 0fe74acfa30a38c495d5b006203539ac98b4de978ce020dede5929c7639ac942
4
- data.tar.gz: 1c320c97ea6d6b4f36bd862394717833c1f177773a4e0817cf510042f6993642
3
+ metadata.gz: 73547e035d184ba3c0c5de0e5b3f2f440b938989e28633ef48ced8060f461af9
4
+ data.tar.gz: e3043310abe2781bf5807813a942dcad8fe86db4f161a0af99a17d268c2a11f7
5
5
  SHA512:
6
- metadata.gz: 811e15a8db4312d0e5d617443d29fb045e3ca46a8116cca35a36a42fd996de540d6d4c5d2842b30fb93efa8214a69e3e98c38b92f8564b2b582053c0282467cf
7
- data.tar.gz: c3c291c2350aaa65980df44373f4e86268ebec87c43b567a66adc4cf985e2c713e216561f4ebb7371d7e731694f25c9265cd7e4be9ed826568ca067000ec2963
6
+ metadata.gz: a28073d389cf3e70eadd17e8fbcb5f6c0ab961df067185bf14552d970cefd74b0b6b6329488d983a36af63fccc26b3bef1ba8fd311f7a99fc601576aaafba61e
7
+ data.tar.gz: 67ba6d8717056695a8c6039cf6b1abbdf95b8e9a3094e9d10aa714e194c38cf5dd75f6d00aa42ad350d4c39646910c3d752bbcb42309930909b4a82f918df2cc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.0] - 2024-07-22
4
+
5
+ - require "active_support" before requiring anything else
6
+
3
7
  ## [0.2.0] - 2023-03-29
4
8
 
5
9
  - Use `File.exist?` instead of `File.exists?`
data/Gemfile.lock CHANGED
@@ -1,22 +1,32 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- file-based-healthcheck (0.2.0)
4
+ file-based-healthcheck (0.3.0)
5
5
  activesupport (>= 3.2)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activesupport (7.0.4.3)
10
+ activesupport (7.1.3.4)
11
+ base64
12
+ bigdecimal
11
13
  concurrent-ruby (~> 1.0, >= 1.0.2)
14
+ connection_pool (>= 2.2.5)
15
+ drb
12
16
  i18n (>= 1.6, < 2)
13
17
  minitest (>= 5.1)
18
+ mutex_m
14
19
  tzinfo (~> 2.0)
15
- concurrent-ruby (1.2.2)
20
+ base64 (0.2.0)
21
+ bigdecimal (3.1.8)
22
+ concurrent-ruby (1.3.3)
23
+ connection_pool (2.4.1)
16
24
  diff-lcs (1.5.0)
17
- i18n (1.12.0)
25
+ drb (2.2.1)
26
+ i18n (1.14.5)
18
27
  concurrent-ruby (~> 1.0)
19
- minitest (5.18.0)
28
+ minitest (5.24.1)
29
+ mutex_m (0.2.0)
20
30
  rake (13.0.6)
21
31
  rspec (3.11.0)
22
32
  rspec-core (~> 3.11.0)
@@ -35,6 +45,7 @@ GEM
35
45
  concurrent-ruby (~> 1.0)
36
46
 
37
47
  PLATFORMS
48
+ arm64-darwin-22
38
49
  x86_64-darwin-18
39
50
  x86_64-darwin-21
40
51
  x86_64-linux
@@ -1,5 +1,5 @@
1
1
  class FileBasedHealthcheck
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
3
3
 
4
4
  module Version
5
5
  end
@@ -1,5 +1,6 @@
1
1
  require "file_based_healthcheck/version"
2
2
  require "fileutils"
3
+ require "active_support"
3
4
  require "active_support/core_ext/time"
4
5
 
5
6
  class FileBasedHealthcheck
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: file-based-healthcheck
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karol Galanciak
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-29 00:00:00.000000000 Z
11
+ date: 2024-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -71,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  - !ruby/object:Gem::Version
72
72
  version: '0'
73
73
  requirements: []
74
- rubygems_version: 3.4.6
74
+ rubygems_version: 3.4.10
75
75
  signing_key:
76
76
  specification_version: 4
77
77
  summary: A gem to use a healthcheck for readiness and liveness probes in Kubernetes.