philiprehberger-progress 0.1.5 → 0.1.7
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 +10 -0
- data/README.md +2 -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: e72f0eb929cae1e26692f54887f9afea8a4f07e750ab38ee2aedfb94bdbe1410
|
|
4
|
+
data.tar.gz: d61c71c3dfe8b7ca7dd76b8eb178d1ec41b94d455c81d1febe62642706b5df37
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e54d8bc9ba96adb894b8645b5e1f900736192188ccfc654889b88488a1778e095d9bc6e9b12d9873a2ccbf4f819f6f2f2bd85455628fd1641328830980c24e04
|
|
7
|
+
data.tar.gz: cec9e9556372c67a5e71fe0c893a4b6ada7c54179bf5001ed80cdbd5f98964ea391672cc64e8a573766a3dcd5601f238435102041c9058645e508bf788f34e98
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.7] - 2026-03-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Standardize README code examples to use double-quote require statements
|
|
14
|
+
|
|
15
|
+
## [0.1.6] - 2026-03-24
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Fix Installation section quote style to double quotes
|
|
19
|
+
|
|
10
20
|
## [0.1.5] - 2026-03-23
|
|
11
21
|
|
|
12
22
|
### Fixed
|
data/README.md
CHANGED
|
@@ -15,7 +15,7 @@ Terminal progress bars and spinners with ETA calculation and throughput display
|
|
|
15
15
|
Add to your Gemfile:
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
|
-
gem
|
|
18
|
+
gem "philiprehberger-progress"
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
Or install directly:
|
|
@@ -29,7 +29,7 @@ gem install philiprehberger-progress
|
|
|
29
29
|
### Progress Bar
|
|
30
30
|
|
|
31
31
|
```ruby
|
|
32
|
-
require
|
|
32
|
+
require "philiprehberger/progress"
|
|
33
33
|
|
|
34
34
|
bar = Philiprehberger::Progress::Bar.new(total: 100)
|
|
35
35
|
100.times do
|
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.7
|
|
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-25 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
|