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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 834e3e304e55f2824d48769656b7fbfda10219d176d23fc445adfeaef01aaca8
4
- data.tar.gz: 958d4a30a4a391f31734713f56dea8b492b7952b53bb7f339aa168a8e37d133f
3
+ metadata.gz: 6b698c4f15d160137298b7023a1c8e661f6f4a49f2378a8aae23e2451e012306
4
+ data.tar.gz: 315252dc778cb44706720dbab9420f778e237e7350e388640889b06c260c9490
5
5
  SHA512:
6
- metadata.gz: 64d45f7f723099e15f7fc54e305029c6893a16e81fdd1ac353343d0be1b8f3ee7a33c412591dd343c6ddc84c9495ae85bb79ad742804019ba0e627e8dffddae0
7
- data.tar.gz: 92429b914eff4069011dfd05aeba9b4ab725816b1f43ceb0b16b1f4e6c12894776d0e0475afe2f75fdf29539d1b7d9047d37a9c42708f6b5bf385a9f6d2c0029
6
+ metadata.gz: 2ded6dc9dfa8d24a9adb8fe80826e403a9cb408818ebb5d8bf504f7390e848e498448b50c5c4af4dfd60d28ab5ef975803b51126b48f53c40839968e5580945c
7
+ data.tar.gz: '087e5ae51b7fa551879135a86819dd2d95c28b1edaf35c716b4f9c4408fb9cf02238225f7ccd6fe214b117ee6eed0e16d9656a3a04a9a9370c76646b7f7136b0'
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2024 Emma Sax
1
+ Copyright 2024 OkComputer (Ruby)
2
2
  Copyright 2017-2024 SportsEngine
3
3
 
4
4
  Permission is hereby granted, free of charge, to any person obtaining
data/README.markdown CHANGED
@@ -1,8 +1,8 @@
1
1
  [![Gem Version](https://badge.fury.io/rb/okcomputer.svg)](https://badge.fury.io/rb/okcomputer)
2
2
  [![Downloads](https://img.shields.io/gem/dt/okcomputer.svg)](https://rubygems.org/gems/okcomputer)
3
- [![License](https://img.shields.io/github/license/emmahsax/okcomputer.svg)](LICENSE)
3
+ [![License](https://img.shields.io/github/license/okcomputer-ruby/okcomputer.svg)](LICENSE)
4
4
  [![Ruby Versions](https://img.shields.io/badge/Ruby-%3E%3D%202.1-brightgreen.svg)](https://www.ruby-lang.org)
5
- [![Build Status](https://github.com/emmahsax/okcomputer/actions/workflows/ci.yml/badge.svg)](https://github.com/emmahsax/okcomputer/actions/workflows/ci.yml)
5
+ [![Build Status](https://github.com/okcomputer-ruby/okcomputer/actions/workflows/ci.yml/badge.svg)](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/emmahsax/okcomputer/blob/main/config/locales/okcomputer.en.yml).
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/emmahsax/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
+ 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/emmahsax/okcomputer/blob/main/lib/ok_computer/version.rb) has the current latest one) by following [semantic versioning](https://semver.org/) guidelines
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)
@@ -1,3 +1,3 @@
1
1
  module OkComputer
2
- VERSION = '1.19.0'
2
+ VERSION = '1.19.2'
3
3
  end
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.0
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: 2025-02-11 00:00:00.000000000 Z
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/emmahsax/okcomputer
87
+ homepage: https://github.com/okcomputer-ruby/okcomputer
74
88
  licenses:
75
89
  - MIT
76
90
  metadata:
77
- bug_tracker_uri: https://github.com/emmahsax/okcomputer/issues
78
- changelog_uri: https://github.com/emmahsax/okcomputer/blob/main/CHANGELOG.markdown
79
- source_code_uri: https://github.com/emmahsax/okcomputer
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: