philiprehberger-progress 0.1.2 → 0.1.4
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 +9 -0
- data/README.md +3 -2
- data/lib/philiprehberger/progress/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: f8087c6262012f810516dfce1be6c6ac648704049a553eeb55d58794899b75d9
|
|
4
|
+
data.tar.gz: 1524ee2b4cb5ef0ef36d6ec51e1a3da2e1f3502113820553a883df5544d71c73
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07ba5bc7e92cdba3dbcc743d138f62a264d22bed8d30d63f6d1d80c36a28f1fb4fac3834fd11864015ec01609a33ff65cbebcf6b4b993ac657590a92c271514c
|
|
7
|
+
data.tar.gz: 897a15c2fd310e8e564d490e2f321f6d62e72c8b0ff715e09dba62ceef4c2fae47b452a47f461d7ec5e006373afeb78ddc82538bd57a1163d771cec469950184
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
|
+
n## [0.1.4] - 2026-03-22
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Fix README badges to match template (Tests, Gem Version, License)
|
|
13
|
+
|
|
14
|
+
## [0.1.3] - 2026-03-22
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
- Expanded test suite from 23 to 30+ examples covering percentage edge cases, advance-after-finish, total=1, throughput, spinner frame cycling, and convenience method coverage
|
|
9
18
|
|
|
10
19
|
## [0.1.2] - 2026-03-22
|
|
11
20
|
|
data/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# philiprehberger-progress
|
|
2
2
|
|
|
3
|
-
[](https://github.com/philiprehberger/rb-progress/actions/workflows/ci.yml)
|
|
4
|
+
[](https://rubygems.org/gems/philiprehberger-progress)
|
|
5
|
+
[](LICENSE)
|
|
5
6
|
|
|
6
7
|
Terminal progress bars and spinners with ETA calculation and throughput display.
|
|
7
8
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-progress
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- philiprehberger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Display progress bars with percentage, ETA, and throughput, or spinners
|
|
14
14
|
for indeterminate tasks. Supports block-based usage, enumerable iteration, and auto-disables
|