okcomputer 1.19.0 → 1.19.2
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 +4 -4
- data/MIT-LICENSE +1 -1
- data/README.markdown +6 -5
- data/lib/ok_computer/version.rb +1 -1
- metadata +22 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b698c4f15d160137298b7023a1c8e661f6f4a49f2378a8aae23e2451e012306
|
|
4
|
+
data.tar.gz: 315252dc778cb44706720dbab9420f778e237e7350e388640889b06c260c9490
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ded6dc9dfa8d24a9adb8fe80826e403a9cb408818ebb5d8bf504f7390e848e498448b50c5c4af4dfd60d28ab5ef975803b51126b48f53c40839968e5580945c
|
|
7
|
+
data.tar.gz: '087e5ae51b7fa551879135a86819dd2d95c28b1edaf35c716b4f9c4408fb9cf02238225f7ccd6fe214b117ee6eed0e16d9656a3a04a9a9370c76646b7f7136b0'
|
data/MIT-LICENSE
CHANGED
data/README.markdown
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
[](https://badge.fury.io/rb/okcomputer)
|
|
2
2
|
[](https://rubygems.org/gems/okcomputer)
|
|
3
|
-
[](LICENSE)
|
|
4
4
|
[](https://www.ruby-lang.org)
|
|
5
|
-
[](https://github.com/okcomputer-ruby/okcomputer/actions/workflows/ci.yml)
|
|
6
6
|
|
|
7
7
|
# OkComputer
|
|
8
8
|
|
|
@@ -26,6 +26,7 @@ OkComputer currently fully supports the following Rails versions:
|
|
|
26
26
|
|
|
27
27
|
In addition, the CI tests are passing on, but is not guaranteed to work with, the following Rails versions:
|
|
28
28
|
|
|
29
|
+
* 8.1
|
|
29
30
|
* 8.0
|
|
30
31
|
* 7.2
|
|
31
32
|
* 7.1
|
|
@@ -184,7 +185,7 @@ This check will run and report its status, but will not affect the HTTP status c
|
|
|
184
185
|
The plain-text output flows through Rails' internationalization framework.
|
|
185
186
|
Adjust the output as necessary by defining `okcomputer.check.passed` and
|
|
186
187
|
`okcomputer.check.failed` keys in your setup. The default values are available
|
|
187
|
-
[in `okcomputer.en.yml`](https://github.com/
|
|
188
|
+
[in `okcomputer.en.yml`](https://github.com/okcomputer-ruby/okcomputer/blob/main/config/locales/okcomputer.en.yml).
|
|
188
189
|
|
|
189
190
|
## Running checks in parallel
|
|
190
191
|
|
|
@@ -246,12 +247,12 @@ bundle and run the tests with a specific version of Rails.
|
|
|
246
247
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
247
248
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
248
249
|
5. Create a new pull request on upstream (this repository)
|
|
249
|
-
6. Update [`CHANGELOG.markdown`](https://github.com/
|
|
250
|
+
6. Update [`CHANGELOG.markdown`](https://github.com/okcomputer-ruby/okcomputer/blob/main/CHANGELOG.markdown) under an `Unreleased` tag version (create a new one at the top if needed) with summarized changes and link to the pull request
|
|
250
251
|
|
|
251
252
|
## Releasing
|
|
252
253
|
|
|
253
254
|
1. Ensure you have push permissions to [RubyGems](https://rubygems.org/gems/okcomputer)
|
|
254
255
|
2. Merge all PRs so that `main` is up to date with the new version
|
|
255
|
-
3. Determine the new version ([`lib/ok_computer/version`](https://github.com/
|
|
256
|
+
3. Determine the new version ([`lib/ok_computer/version`](https://github.com/okcomputer-ruby/okcomputer/blob/main/lib/ok_computer/version.rb) has the current latest one) by following [semantic versioning](https://semver.org/) guidelines
|
|
256
257
|
4. Ensure you're on the `main` branch and you are locally up to date (`git checkout main && git pull`)
|
|
257
258
|
5. Run the release script and pass in the new version (`bin/release vX.X.X`... the `v` at the beginning is optional)
|
data/lib/ok_computer/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: okcomputer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.19.
|
|
4
|
+
version: 1.19.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Patrick Byrne
|
|
@@ -12,8 +12,22 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date:
|
|
16
|
-
dependencies:
|
|
15
|
+
date: 2026-05-31 00:00:00.000000000 Z
|
|
16
|
+
dependencies:
|
|
17
|
+
- !ruby/object:Gem::Dependency
|
|
18
|
+
name: benchmark
|
|
19
|
+
requirement: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: '0'
|
|
24
|
+
type: :runtime
|
|
25
|
+
prerelease: false
|
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
27
|
+
requirements:
|
|
28
|
+
- - ">="
|
|
29
|
+
- !ruby/object:Gem::Version
|
|
30
|
+
version: '0'
|
|
17
31
|
description: Inspired by the simplicity of Fitter Happier, but frustrated by its lack
|
|
18
32
|
of flexibility, we built OkComputer. Create and register your own custom health
|
|
19
33
|
checks, or choose from the built-in library of checks to ensure your app is working
|
|
@@ -70,13 +84,14 @@ files:
|
|
|
70
84
|
- lib/ok_computer/registry.rb
|
|
71
85
|
- lib/ok_computer/version.rb
|
|
72
86
|
- lib/okcomputer.rb
|
|
73
|
-
homepage: https://github.com/
|
|
87
|
+
homepage: https://github.com/okcomputer-ruby/okcomputer
|
|
74
88
|
licenses:
|
|
75
89
|
- MIT
|
|
76
90
|
metadata:
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
91
|
+
homepage_uri: https://github.com/okcomputer-ruby/okcomputer
|
|
92
|
+
bug_tracker_uri: https://github.com/okcomputer-ruby/okcomputer/issues
|
|
93
|
+
changelog_uri: https://github.com/okcomputer-ruby/okcomputer/blob/main/CHANGELOG.markdown
|
|
94
|
+
source_code_uri: https://github.com/okcomputer-ruby/okcomputer
|
|
80
95
|
post_install_message:
|
|
81
96
|
rdoc_options: []
|
|
82
97
|
require_paths:
|