philiprehberger-progress 0.1.1 → 0.1.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 +16 -2
- data/README.md +1 -0
- data/lib/philiprehberger/progress/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2fc6067b4fed2d1167ed876e585aad82f57deecae7f799d731ff691528504238
|
|
4
|
+
data.tar.gz: d479595d391aeac66aa988263de68fcca191a0d4f93545f63a4fb1d5e4273e8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb1a78889a772cace658584581c125a8e7953a84494cb58f0bdefa87f9d2600ecfc3e4a383a8718e6af9b18b6b4ab2e8e9baccb21236e55b7c68f53beee98221
|
|
7
|
+
data.tar.gz: d18c0f715bcb07da70718703b31f16a66c4c8ae398d9e70ee8ac059748cfaffaf81b5070beffef37f39045a4705e926c9f15e6417f987bc660dba534ad842687
|
data/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
All notable changes to this
|
|
3
|
+
All notable changes to this gem will be documented in this file.
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
-
and this
|
|
6
|
+
and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.1.3] - 2026-03-22
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- 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
|
|
14
|
+
|
|
15
|
+
## [0.1.2] - 2026-03-22
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- Fix CHANGELOG header wording
|
|
20
|
+
- Add bug_tracker_uri to gemspec
|
|
7
21
|
|
|
8
22
|
## [0.1.0] - 2026-03-22
|
|
9
23
|
|
data/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# philiprehberger-progress
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/rb/philiprehberger-progress)
|
|
4
|
+
$badge_line
|
|
4
5
|
[](https://github.com/philiprehberger/rb-progress/actions/workflows/ci.yml)
|
|
5
6
|
|
|
6
7
|
Terminal progress bars and spinners with ETA calculation and throughput display.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- philiprehberger
|
|
@@ -34,6 +34,7 @@ metadata:
|
|
|
34
34
|
homepage_uri: https://github.com/philiprehberger/rb-progress
|
|
35
35
|
source_code_uri: https://github.com/philiprehberger/rb-progress
|
|
36
36
|
changelog_uri: https://github.com/philiprehberger/rb-progress/blob/main/CHANGELOG.md
|
|
37
|
+
bug_tracker_uri: https://github.com/philiprehberger/rb-progress/issues
|
|
37
38
|
rubygems_mfa_required: 'true'
|
|
38
39
|
post_install_message:
|
|
39
40
|
rdoc_options: []
|