infobar 0.8.0 → 0.8.1
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/.all_images.yml +1 -1
- data/.gitignore +0 -1
- data/CHANGES.md +16 -0
- data/Gemfile +0 -2
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/infobar.gemspec +4 -4
- data/lib/infobar/version.rb +1 -1
- data/lib/infobar.rb +3 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1d0b2e928a68a99137db85fa9d39b6c607fe4a1c5e951d108f83a2663227bce8
|
|
4
|
+
data.tar.gz: 40c78fa220a062940757f7bdbaca204830af757af54a147581df258e0dc35a47
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 63455a33afd3efaf55a9c3e3ae30d902a1e92c2ea112afc2eb67738874105ca376c573410f24b8b1792e8efad44c4f208f2011ac9ce1b181dd2a4cbad2388680
|
|
7
|
+
data.tar.gz: 470b3dda739a5768e3470c6e923a1e1acb87f137c9a3c300f6614b4cfae55994d68fc56d5ed471aa6038c0c0d543a4d5729298c2ebc8fad2a54d20288e57b0ef
|
data/.all_images.yml
CHANGED
data/.gitignore
CHANGED
data/CHANGES.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 2024-09-08 v0.8.1
|
|
4
|
+
|
|
5
|
+
* **Dependency Updates**:
|
|
6
|
+
+ Update `all_images` Dockerfile and Gem installation
|
|
7
|
+
- Removed gem update and `gem_hadar/bundler` installation from Dockerfile
|
|
8
|
+
- Replaced RUN commands with bundle install and rake spec using bundler
|
|
9
|
+
+ Upgrade `gem_hadar`
|
|
10
|
+
* **Refactor Infobar message formatting**
|
|
11
|
+
+ Update `@message` assignment to use a conditional format string
|
|
12
|
+
* **Miscellaneous**:
|
|
13
|
+
+ Bump version and dependencies
|
|
14
|
+
- Update `.all_images.yml` to use `bundle install --full-index`
|
|
15
|
+
- Remove `.byebug_history` from `.gitignore`
|
|
16
|
+
- Remove `gem 'byebug', platform: :mri'` from `Gemfile`
|
|
17
|
+
- Bump version in `VERSION`, `infobar.gemspec`, and `lib/infobar/version.rb`
|
|
18
|
+
|
|
3
19
|
## 2024-09-01 v0.8.0
|
|
4
20
|
|
|
5
21
|
* **New Version:** 0.8.0
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
|
@@ -12,7 +12,7 @@ GemHadar do
|
|
|
12
12
|
module_type :class
|
|
13
13
|
test_dir 'spec'
|
|
14
14
|
ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', 'coverage', '.rvmrc',
|
|
15
|
-
'.AppleDouble', 'tags', '.
|
|
15
|
+
'.AppleDouble', 'tags', '.DS_Store', 'errors.lst', '.tool-versions'
|
|
16
16
|
readme 'README.md'
|
|
17
17
|
title "#{name.camelize}"
|
|
18
18
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.8.
|
|
1
|
+
0.8.1
|
data/infobar.gemspec
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: infobar 0.8.
|
|
2
|
+
# stub: infobar 0.8.1 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "infobar".freeze
|
|
6
|
-
s.version = "0.8.
|
|
6
|
+
s.version = "0.8.1".freeze
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.require_paths = ["lib".freeze]
|
|
10
10
|
s.authors = ["Florian Frank".freeze]
|
|
11
|
-
s.date = "2024-09-
|
|
11
|
+
s.date = "2024-09-08"
|
|
12
12
|
s.description = "This gem displays progress of computations and additional information to the terminal.".freeze
|
|
13
13
|
s.email = "flori@ping.de".freeze
|
|
14
14
|
s.extra_rdoc_files = ["README.md".freeze, "lib/infobar.rb".freeze, "lib/infobar/counter.rb".freeze, "lib/infobar/display.rb".freeze, "lib/infobar/duration.rb".freeze, "lib/infobar/fancy_interface.rb".freeze, "lib/infobar/fifo.rb".freeze, "lib/infobar/frequency.rb".freeze, "lib/infobar/input_output.rb".freeze, "lib/infobar/message.rb".freeze, "lib/infobar/number.rb".freeze, "lib/infobar/rate.rb".freeze, "lib/infobar/spinner.rb".freeze, "lib/infobar/timer.rb".freeze, "lib/infobar/trend.rb".freeze, "lib/infobar/version.rb".freeze]
|
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
|
|
|
16
16
|
s.homepage = "https://github.com/flori/infobar".freeze
|
|
17
17
|
s.rdoc_options = ["--title".freeze, "Infobar".freeze, "--main".freeze, "README.md".freeze]
|
|
18
18
|
s.required_ruby_version = Gem::Requirement.new(">= 2.3".freeze)
|
|
19
|
-
s.rubygems_version = "3.5.
|
|
19
|
+
s.rubygems_version = "3.5.18".freeze
|
|
20
20
|
s.summary = "Gem to display information about computations.".freeze
|
|
21
21
|
s.test_files = ["spec/infobar/config_spec.rb".freeze, "spec/infobar/counter_spec.rb".freeze, "spec/infobar/display_spec.rb".freeze, "spec/infobar/duration_spec.rb".freeze, "spec/infobar/fifo_spec.rb".freeze, "spec/infobar/frequency_spec.rb".freeze, "spec/infobar/input_output_spec.rb".freeze, "spec/infobar/message_spec.rb".freeze, "spec/infobar/number_spec.rb".freeze, "spec/infobar/rate_spec.rb".freeze, "spec/infobar/spinner_spec.rb".freeze, "spec/infobar/timer_spec.rb".freeze, "spec/infobar/trend_spec.rb".freeze, "spec/infobar_spec.rb".freeze, "spec/spec_helper.rb".freeze]
|
|
22
22
|
|
data/lib/infobar/version.rb
CHANGED
data/lib/infobar.rb
CHANGED
|
@@ -77,7 +77,9 @@ class Infobar
|
|
|
77
77
|
self.label = label
|
|
78
78
|
counter.reset(total: total, current: current)
|
|
79
79
|
display.reset clear: false
|
|
80
|
-
@message = convert_to_message(
|
|
80
|
+
@message = convert_to_message(
|
|
81
|
+
message.full? || '%l %c/%t in %te, ETA %e @%E %s'
|
|
82
|
+
)
|
|
81
83
|
show.nil? or self.show = show
|
|
82
84
|
frequency.nil? or display.frequency = frequency
|
|
83
85
|
style.nil? or self.style = style
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: infobar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Florian Frank
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-09-
|
|
11
|
+
date: 2024-09-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gem_hadar
|
|
@@ -245,7 +245,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
245
245
|
- !ruby/object:Gem::Version
|
|
246
246
|
version: '0'
|
|
247
247
|
requirements: []
|
|
248
|
-
rubygems_version: 3.5.
|
|
248
|
+
rubygems_version: 3.5.18
|
|
249
249
|
signing_key:
|
|
250
250
|
specification_version: 4
|
|
251
251
|
summary: Gem to display information about computations.
|