philiprehberger-progress 0.1.4 → 0.1.6
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 +13 -1
- data/README.md +10 -8
- 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: 9d387d8800827306827e78358f9480e2fefc477b56aeeb85989b9fce035aa0a8
|
|
4
|
+
data.tar.gz: 2a425db40919536ba7b1989cca81153425391219a11f0c56bdd44e53ea02cf5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60e9ffc691da03e957454295a78f8f922a5c34e09c8ce562375e756031a0a626936e15506a860a2b519e29fc7698f7decd449840867f364e6e870613e66c8332
|
|
7
|
+
data.tar.gz: 0cac83874923862e981a7d2a9fee4d0d6cdab425889fff9c9246be4e8fe85dddd2861ccb2495369bac2a6f82b2561bbfb0171e25e6fbd4aed99c4c9109f451c8
|
data/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,19 @@ 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
|
-
|
|
9
|
+
|
|
10
|
+
## [0.1.6] - 2026-03-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fix Installation section quote style to double quotes
|
|
14
|
+
|
|
15
|
+
## [0.1.5] - 2026-03-23
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Standardize README to match template (installation order, code fences, license section, one-liner format)
|
|
19
|
+
- Update gemspec summary to match README description
|
|
20
|
+
|
|
21
|
+
## [0.1.4] - 2026-03-22
|
|
10
22
|
|
|
11
23
|
### Changed
|
|
12
24
|
- Fix README badges to match template (Tests, Gem Version, License)
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-progress)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
|
-
Terminal progress bars and spinners with ETA calculation and throughput display
|
|
7
|
+
Terminal progress bars and spinners with ETA calculation and throughput display
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
|
@@ -12,14 +12,16 @@ Terminal progress bars and spinners with ETA calculation and throughput display.
|
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
Add to your Gemfile:
|
|
16
|
+
|
|
17
|
+
```ruby
|
|
18
|
+
gem "philiprehberger-progress"
|
|
17
19
|
```
|
|
18
20
|
|
|
19
|
-
Or
|
|
21
|
+
Or install directly:
|
|
20
22
|
|
|
21
|
-
```
|
|
22
|
-
gem
|
|
23
|
+
```bash
|
|
24
|
+
gem install philiprehberger-progress
|
|
23
25
|
```
|
|
24
26
|
|
|
25
27
|
## Usage
|
|
@@ -111,7 +113,7 @@ end
|
|
|
111
113
|
|
|
112
114
|
## Development
|
|
113
115
|
|
|
114
|
-
```
|
|
116
|
+
```bash
|
|
115
117
|
bundle install
|
|
116
118
|
bundle exec rspec
|
|
117
119
|
bundle exec rubocop
|
|
@@ -119,4 +121,4 @@ bundle exec rubocop
|
|
|
119
121
|
|
|
120
122
|
## License
|
|
121
123
|
|
|
122
|
-
MIT
|
|
124
|
+
MIT
|
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.6
|
|
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-24 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
|