infobar 0.8.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.all_images.yml +2 -1
- data/.gitignore +0 -1
- data/.utilsrc +0 -1
- data/CHANGES.md +52 -28
- data/Gemfile +0 -2
- data/README.md +0 -47
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/infobar.gemspec +5 -5
- data/lib/infobar/spinner.rb +23 -21
- data/lib/infobar/version.rb +1 -1
- data/lib/infobar.rb +3 -1
- data/spec/infobar/display_spec.rb +3 -3
- data/spec/infobar_spec.rb +4 -1
- metadata +5 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a851b107c04ec6fc0244947964d8677886ee7cbe2516fbcbab69ad0997fc54d8
|
4
|
+
data.tar.gz: 8919fba2def59ff708b4f2a2d2b307e9a2b1e675a79ae4184f9dcd4aa7c35483
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f05c0f568bc62c3afa048ea134b9c6567d98e975847d82b93446599501f7aa21b78c51c74e3ba18cae30c52f674c6460cf84ff5d0c93b3d85fc8515b1d41cb5f
|
7
|
+
data.tar.gz: a4c3ad5cf6f3ed3ea9b8d42f2d753a7a2e7901724ed438339e76aecd70841eda3d51ff320b51ff1d900440582fef283a6a5409c7b2e0350c2cd40626d9c545ea
|
data/.all_images.yml
CHANGED
@@ -6,12 +6,13 @@ script: &script |-
|
|
6
6
|
ruby -v
|
7
7
|
echo -e "\e[0m"
|
8
8
|
gem install bundler
|
9
|
-
bundle install
|
9
|
+
bundle install --full-index
|
10
10
|
bundle exec rake spec
|
11
11
|
|
12
12
|
fail_fast: true
|
13
13
|
|
14
14
|
images:
|
15
|
+
ruby:3.4-alpine: *script
|
15
16
|
ruby:3.3-alpine: *script
|
16
17
|
ruby:3.2-alpine: *script
|
17
18
|
ruby:3.1-alpine: *script
|
data/.gitignore
CHANGED
data/.utilsrc
CHANGED
data/CHANGES.md
CHANGED
@@ -1,18 +1,42 @@
|
|
1
1
|
# Changes
|
2
2
|
|
3
|
+
## 2025-01-10 v0.9.0
|
4
|
+
|
5
|
+
* Removed outdated changelogs for versions prior to **0.6.1** from README.md.
|
6
|
+
* Added `braille18` animation to `Infobar::Spinner` class.
|
7
|
+
* Added `braille181` character set to `PREDEFINED` in Infobar Spinner.
|
8
|
+
* Added Ruby 3.4-alpine to supported versions in `.all_images.yml` file.
|
9
|
+
* Replaced `allow` with `expect` in tests.
|
10
|
+
|
11
|
+
## 2024-09-08 v0.8.1
|
12
|
+
|
13
|
+
* **Dependency Updates**:
|
14
|
+
+ Update `all_images` Dockerfile and Gem installation
|
15
|
+
- Removed gem update and `gem_hadar/bundler` installation from Dockerfile
|
16
|
+
- Replaced RUN commands with bundle install and rake spec using bundler
|
17
|
+
+ Upgrade `gem_hadar`
|
18
|
+
* **Refactor Infobar message formatting**
|
19
|
+
+ Update `@message` assignment to use a conditional format string
|
20
|
+
* **Miscellaneous**:
|
21
|
+
+ Bump version and dependencies
|
22
|
+
- Update `.all_images.yml` to use `bundle install --full-index`
|
23
|
+
- Remove `.byebug_history` from `.gitignore`
|
24
|
+
- Remove `gem 'byebug', platform: :mri'` from `Gemfile`
|
25
|
+
- Bump version in `VERSION`, `infobar.gemspec`, and `lib/infobar/version.rb`
|
26
|
+
|
3
27
|
## 2024-09-01 v0.8.0
|
4
28
|
|
5
29
|
* **New Version:** 0.8.0
|
6
30
|
* **Significant Changes:**
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
31
|
+
+ *Update all_images Dockerfile and Gem installation*
|
32
|
+
- Removed gem update and gem_hadar/bundler installation from Dockerfile
|
33
|
+
- Replaced RUN commands with bundle install and rake spec using bundler
|
34
|
+
+ *Add string representation for Infobar::Counter*
|
35
|
+
- Added test for representing Infobar::Counter as a string
|
36
|
+
- Updated test to check progress method with different options
|
37
|
+
+ *Update Infobar busy method to accept frames option*
|
38
|
+
- Update busy method to take an optional frames parameter with default value :circle1
|
39
|
+
- Change message format in busy method to use frames option instead of hardcoded :circle1 symbol
|
16
40
|
|
17
41
|
## 2024-03-15 v0.7.4
|
18
42
|
|
@@ -21,10 +45,10 @@
|
|
21
45
|
## 2024-03-15 v0.7.3
|
22
46
|
|
23
47
|
* **New Features**
|
24
|
-
|
25
|
-
|
48
|
+
+ Updated homepage URL to use HTTPS
|
49
|
+
+ Integrated latest `gem_hadar` gem
|
26
50
|
* **Changes**
|
27
|
-
|
51
|
+
+ Homepage URL updated to secure protocol
|
28
52
|
|
29
53
|
## 2023-10-09 v0.7.2
|
30
54
|
|
@@ -38,17 +62,17 @@
|
|
38
62
|
## 2021-01-12 v0.7.0
|
39
63
|
|
40
64
|
* **New Features**
|
41
|
-
|
65
|
+
+ Support for Ruby 3.0
|
42
66
|
* **Dependencies**
|
43
|
-
|
67
|
+
+ Depend on the newest version of an unspecified library or framework
|
44
68
|
|
45
69
|
## 2020-05-15 v0.6.2
|
46
70
|
|
47
71
|
* **Significant Changes**:
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
72
|
+
+ Use keyword operator
|
73
|
+
+ Upgrade bundler
|
74
|
+
+ Test ruby 2.7
|
75
|
+
+ Remove unnecessary code
|
52
76
|
|
53
77
|
## 2019-04-11 v0.6.1
|
54
78
|
|
@@ -61,7 +85,7 @@
|
|
61
85
|
## 2018-11-01 v0.5.1
|
62
86
|
|
63
87
|
* **Allow busy bar message to be overwritten**
|
64
|
-
|
88
|
+
+ Added functionality to overwrite the default busy bar message.
|
65
89
|
|
66
90
|
## 2018-03-05 v0.5.0
|
67
91
|
|
@@ -70,9 +94,9 @@
|
|
70
94
|
## 2017-12-08 v0.4.0
|
71
95
|
|
72
96
|
* **New Feature**: Automatically iterate when `with_infobar` is passed a block.
|
73
|
-
|
97
|
+
+ This change allows for more flexible usage of the `with_infobar` method.
|
74
98
|
* **Documentation**: Add COPYING file
|
75
|
-
|
99
|
+
+ Provides licensing information for the project.
|
76
100
|
|
77
101
|
## 2017-06-29 v0.3.0
|
78
102
|
|
@@ -95,15 +119,15 @@
|
|
95
119
|
## 2017-04-24 v0.1.0
|
96
120
|
|
97
121
|
* **New Features**
|
98
|
-
|
122
|
+
+ Support for multiple colored progress bars
|
99
123
|
* **Bug Fixes**
|
100
|
-
|
101
|
-
|
124
|
+
+ Ensure bar is always long enough
|
125
|
+
+ Correct config environment settings
|
102
126
|
|
103
127
|
## 2017-04-13 v0.0.7
|
104
128
|
|
105
129
|
* **New Feature:** Forced display of Infobar updates:
|
106
|
-
|
130
|
+
+ When calling `Infobar.update`, the infobar will now always be displayed.
|
107
131
|
|
108
132
|
## 2017-03-24 v0.0.6
|
109
133
|
|
@@ -122,9 +146,9 @@
|
|
122
146
|
## 2017-03-09 v0.0.3
|
123
147
|
|
124
148
|
* **New Version Summary**
|
125
|
-
|
126
|
-
|
127
|
-
|
149
|
+
+ Reset frequency when calling `clear`
|
150
|
+
+ Added reminder to TODO list
|
151
|
+
+ Fixed a typo
|
128
152
|
|
129
153
|
## 2017-02-10 v0.0.2
|
130
154
|
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -19,53 +19,6 @@ Display progress of computations and additional information to the terminal.
|
|
19
19
|
|
20
20
|
> (1..23).with_infobar.each { |i| +infobar; sleep 1 }
|
21
21
|
|
22
|
-
## Changes
|
23
|
-
|
24
|
-
* 2019-04-11 Release 0.6.1
|
25
|
-
- Counter string representation shows results now.
|
26
|
-
|
27
|
-
* 2019-01-31 Release 0.6.0
|
28
|
-
- Allow progressing with - as false.
|
29
|
-
|
30
|
-
* 2018-11-01 Release 0.5.1
|
31
|
-
- Allow busy bar message to be overwritten.
|
32
|
-
|
33
|
-
* 2018-03-05 Release 0.5.0
|
34
|
-
- Allow counter values to be formatted with units.
|
35
|
-
|
36
|
-
* 2017-12-08 Release 0.4.0
|
37
|
-
- Automatically iterate when `with_infobar` is passed a block.
|
38
|
-
|
39
|
-
* 2017-06-29 Release 0.3.0
|
40
|
-
- Nicely format large numbers the Ruby way
|
41
|
-
|
42
|
-
* 2017-05-24 Release 0.2.0
|
43
|
-
- Allow setting of input/output on initial call.
|
44
|
-
|
45
|
-
…
|
46
|
-
|
47
|
-
* 2017-03-24 Release 0.0.6
|
48
|
-
- Add busybar functionality via Infobar.busy { … } call
|
49
|
-
|
50
|
-
* 2017-03-10 Release 0.0.5
|
51
|
-
- Always provide a default unit for rate display, 'i/s' for "items per second".
|
52
|
-
|
53
|
-
* 2017-03-10 Release 0.0.4
|
54
|
-
- Fix problem b/c at the beginning there might not be a valid rate.
|
55
|
-
|
56
|
-
* 2017-03-09 Release 0.0.3
|
57
|
-
- Reset frequency after calling clear. This means after calling output methods
|
58
|
-
the next update will be forced.
|
59
|
-
|
60
|
-
* 2017-02-10 Release 0.0.2
|
61
|
-
- Add trend arrow to rate directive
|
62
|
-
|
63
|
-
* 2017-02-08 Release 0.0.1
|
64
|
-
- Allow disabling of delegated output via infobar.show = false
|
65
|
-
|
66
|
-
* 2017-02-08 Release 0.0.0
|
67
|
-
- Initial release
|
68
|
-
|
69
22
|
## Download
|
70
23
|
|
71
24
|
The homepage of this library is located at
|
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.
|
1
|
+
0.9.0
|
data/infobar.gemspec
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
# stub: infobar 0.
|
2
|
+
# stub: infobar 0.9.0 ruby lib
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "infobar".freeze
|
6
|
-
s.version = "0.
|
6
|
+
s.version = "0.9.0".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 = "
|
11
|
+
s.date = "2025-01-10"
|
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,13 +16,13 @@ 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.
|
19
|
+
s.rubygems_version = "3.6.2".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
|
|
23
23
|
s.specification_version = 4
|
24
24
|
|
25
|
-
s.add_development_dependency(%q<gem_hadar>.freeze, ["~> 1.
|
25
|
+
s.add_development_dependency(%q<gem_hadar>.freeze, ["~> 1.19".freeze])
|
26
26
|
s.add_development_dependency(%q<rake>.freeze, [">= 0".freeze])
|
27
27
|
s.add_development_dependency(%q<simplecov>.freeze, [">= 0".freeze])
|
28
28
|
s.add_development_dependency(%q<rspec>.freeze, [">= 0".freeze])
|
data/lib/infobar/spinner.rb
CHANGED
@@ -1,26 +1,28 @@
|
|
1
1
|
class Infobar::Spinner
|
2
2
|
PREDEFINED = {
|
3
|
-
pipe:
|
4
|
-
arrow:
|
5
|
-
bar1:
|
6
|
-
bar2:
|
7
|
-
braille7:
|
8
|
-
braille1:
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
3
|
+
pipe: %w[ | / – \\ ],
|
4
|
+
arrow: %w[ ↑ ↗ → ↘ ↓ ↙ ← ↖ ],
|
5
|
+
bar1: %w[ ▁ ▂ ▃ ▄ ▅ ▆ ▇ █ ▇ ▆ ▅ ▄ ▃ ▂ ],
|
6
|
+
bar2: %w[ █ ▉ ▊ ▋ ▌ ▍ ▎ ▏ ▎ ▍ ▌ ▋ ▊ ▉ ],
|
7
|
+
braille7: %w[ ⣾ ⣽ ⣻ ⢿ ⡿ ⣟ ⣯ ⣷ ],
|
8
|
+
braille1: %w[ ⠁ ⠂ ⠄ ⡀ ⢀ ⠠ ⠐ ⠈ ],
|
9
|
+
braille18: %w[ ⡀ ⡄ ⡆ ⡇ ⣇ ⣧ ⣷ ⣿ ],
|
10
|
+
braille181: %w[ ⡀ ⡄ ⡆ ⡇ ⣇ ⣧ ⣷ ⣿ ⣷ ⣧ ⣇ ⡇ ⡆ ⡄ ⡀ ],
|
11
|
+
square1: %w[ ▖ ▘ ▝ ▗ ],
|
12
|
+
square2: %w[ ◰ ◳ ◲ ◱ ],
|
13
|
+
tetris: %w[ ▌ ▀ ▐▄ ],
|
14
|
+
eyes: %w[ ◡◡ ⊙⊙ ◠◠ ],
|
15
|
+
corners: %w[ ┤ ┘ ┴ └ ├ ┌ ┬ ┐ ],
|
16
|
+
triangle: %w[ ◢ ◣ ◤ ◥ ],
|
17
|
+
circle1: %w[ ◴ ◷ ◶ ◵ ],
|
18
|
+
circle2: %w[ ◐ ◓ ◑ ◒ ],
|
19
|
+
circle3: %w[ ◜ ◝ ◞ ◟ ],
|
20
|
+
cross: %w[ + × ],
|
21
|
+
cylon: [ '● ', ' ● ', ' ●', ' ● ' ],
|
22
|
+
pacman: [ 'ᗧ∙∙∙∙●', ' O∙∙∙●', ' ᗧ∙∙●',' O∙●', ' ᗧ●', 'ᗣ O', ' ᗣ ᗤ', ' ᗣ O ', ' ᗣ ᗤ ', ' ᗣO ', ' ᗤ ', 'O ∞ ', 'ᗧ ∞ ', 'O ' ],
|
23
|
+
asteroids: [ 'ᐊ ◍', 'ᐃ ◍', 'ᐓ ◍', 'ᐅ· ◍', 'ᐅ ·◍', 'ᐅ ○', 'ᐅ ◌', 'ᐁ ' ],
|
24
|
+
clock: %w[ 🕐 🕜 🕑 🕝 🕒 🕞 🕓 🕟 🕔 🕠 🕕 🕡 🕖 🕢 🕗 🕣 🕘 🕤 🕙 🕥 🕚 🕦 🕛 🕧 ],
|
25
|
+
hourglass: %w[ ⏳ ⌛ ],
|
24
26
|
}
|
25
27
|
|
26
28
|
def initialize(frames = nil)
|
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
|
@@ -59,11 +59,11 @@ describe Infobar::Display do
|
|
59
59
|
|
60
60
|
it 'styles are different as kinds differ' do
|
61
61
|
counter = Infobar::Counter.new.reset(total: 7, current: 5)
|
62
|
-
|
62
|
+
expect(counter).to receive(:as).and_return(
|
63
63
|
foo: 3,
|
64
64
|
bar: 2
|
65
65
|
)
|
66
|
-
|
66
|
+
expect(display).to receive(:as_styles).and_return(
|
67
67
|
{
|
68
68
|
foo: {
|
69
69
|
done_fill: ?X,
|
@@ -76,7 +76,7 @@ describe Infobar::Display do
|
|
76
76
|
done_bg_color: 10,
|
77
77
|
}
|
78
78
|
}
|
79
|
-
)
|
79
|
+
).at_least(:once)
|
80
80
|
display.update message: 'test', counter: counter
|
81
81
|
expect(output.tap(&:rewind).read).to eq\
|
82
82
|
"\r\e[38;5;1m\e[48;5;9mXXXXXXXXXXXXXXXXX\e[0m\e[0m\e[38;5;0m\e[48;5;10m*test******\e[0m\e[0m\e[38;5;40m\e[48;5;22m \e[0m\e[0m"
|
data/spec/infobar_spec.rb
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
describe Infobar do
|
4
|
+
before do
|
5
|
+
allow(Tins::Terminal).to receive(:columns).and_return 80
|
6
|
+
end
|
7
|
+
|
4
8
|
after do
|
5
9
|
infobar.reset
|
6
10
|
infobar.show = true
|
@@ -182,7 +186,6 @@ describe Infobar do
|
|
182
186
|
Infobar(total: 10, style: { done_fill: ?X })
|
183
187
|
output = ''
|
184
188
|
infobar.display.output = output
|
185
|
-
allow(Tins::Terminal).to receive(:columns).and_return 80
|
186
189
|
infobar.progress(force: true)
|
187
190
|
expect(output).to include 'X'
|
188
191
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: infobar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Florian Frank
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-10 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: gem_hadar
|
@@ -16,14 +15,14 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - "~>"
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
18
|
+
version: '1.19'
|
20
19
|
type: :development
|
21
20
|
prerelease: false
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
23
22
|
requirements:
|
24
23
|
- - "~>"
|
25
24
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
25
|
+
version: '1.19'
|
27
26
|
- !ruby/object:Gem::Dependency
|
28
27
|
name: rake
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -226,7 +225,6 @@ files:
|
|
226
225
|
homepage: https://github.com/flori/infobar
|
227
226
|
licenses: []
|
228
227
|
metadata: {}
|
229
|
-
post_install_message:
|
230
228
|
rdoc_options:
|
231
229
|
- "--title"
|
232
230
|
- Infobar
|
@@ -245,8 +243,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
245
243
|
- !ruby/object:Gem::Version
|
246
244
|
version: '0'
|
247
245
|
requirements: []
|
248
|
-
rubygems_version: 3.
|
249
|
-
signing_key:
|
246
|
+
rubygems_version: 3.6.2
|
250
247
|
specification_version: 4
|
251
248
|
summary: Gem to display information about computations.
|
252
249
|
test_files:
|