philiprehberger-cron_kit 0.3.2 → 0.3.3
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/CHANGELOG.md +15 -4
- data/README.md +2 -2
- data/lib/philiprehberger/cron_kit/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f32495abec17d96d4ccc27aa224ab5f8b552bfad585a33fc767b3cb65111fba5
|
|
4
|
+
data.tar.gz: c40ec2e1ceb338a94d519a5277445dc12804fc81d7323b029c2daf48e8ce278f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 664b187b30c845a2022a2b6569da52b84680601e66f8e687f7dbb03583571c91c584f71e7c1ca6507ecd9e54796172189a02e1f8f4e59df40eb54483dcb8f7a1
|
|
7
|
+
data.tar.gz: 2fd5e40f7cbbdfd201792a269a95fae5b8c65439451a018fffc28ddd8bc731929f83cc9d63c7d53d7de67cc4d84727a9c93e2c0cac4c7eb6aa5c33e0d034dc6d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
All notable changes to this gem will be documented in this file.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## [Unreleased]
|
|
6
|
+
|
|
7
|
+
## [0.3.3] - 2026-03-20
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
### Fixed
|
|
10
|
+
- Standardize Installation section in README
|
|
11
|
+
- Fix README description format (single sentence, no trailing period)
|
|
12
|
+
- Fix CHANGELOG header wording
|
|
8
13
|
|
|
9
14
|
## [0.3.2] - 2026-03-20
|
|
10
15
|
|
|
11
16
|
### Fixed
|
|
12
17
|
- Fix Gem Version badge URL in README
|
|
13
18
|
|
|
19
|
+
## [0.3.1] - 2026-03-18
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
- Fix RuboCop Style/StringLiterals violations in gemspec
|
|
23
|
+
|
|
14
24
|
## [0.3.0] - 2026-03-17
|
|
15
25
|
|
|
16
26
|
### Added
|
|
@@ -24,8 +34,9 @@ All notable changes to this project will be documented in this file.
|
|
|
24
34
|
- `Timezone` module for offset resolution (stdlib only)
|
|
25
35
|
- `Parser` module extracted from `Expression` for field parsing logic
|
|
26
36
|
|
|
27
|
-
## 0.2.1
|
|
37
|
+
## [0.2.1] - 2026-03-17
|
|
28
38
|
|
|
39
|
+
### Added
|
|
29
40
|
- Add License badge to README
|
|
30
41
|
- Add bug_tracker_uri to gemspec
|
|
31
42
|
- Add Development section to README
|
data/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# philiprehberger-cron_kit
|
|
2
2
|
|
|
3
|
+
[](https://github.com/philiprehberger/rb-cron-kit/actions/workflows/ci.yml)
|
|
3
4
|
[](https://rubygems.org/gems/philiprehberger-cron_kit)
|
|
4
|
-
[](https://github.com/philiprehberger/rb-cron-kit/actions/workflows/ci.yml)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
|
-
Cron expression parser and scheduler for Ruby
|
|
7
|
+
Cron expression parser and scheduler for Ruby
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-cron_kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Philip Rehberger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A zero-dependency Ruby gem for parsing 5-field cron expressions and running
|
|
14
14
|
an in-process scheduler. Supports wildcards, ranges, steps, and lists.
|