progress_bar 1.0.5 → 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 63c44738d941428ab4348be03ab2f1744343fb7b
4
- data.tar.gz: a78ec7e3bd7e45e56ae9fb9d07d7269d3b05dbda
2
+ SHA256:
3
+ metadata.gz: 93deaf290ed6e467982f59e116823785ec82927e7c490b46fa4379dc08b23777
4
+ data.tar.gz: c7888385f8bdb280e39fb63d212bcdc75ee5f20a04aaccff753e35d110151e6d
5
5
  SHA512:
6
- metadata.gz: 913cb8e575f72ff88aaf39d32e54e67abbe83ab6aa19540295b512641c898a038ad91b1b845604bb4fd19abc5cc4436e64a63ada61faf0dbaf27b982b83863d1
7
- data.tar.gz: 5a483c2f3cc1e5b41949644463c8da98ecdb9509c18ab2d117971cd72fc71589b44bdba59ec08f5c59910904e211ac66f1dd8069df9d3e17aeaf8d011d4a60d8
6
+ metadata.gz: 1f384ee668213ae7b49b5b3d7b22c3ee8ccaabe1303b46f34f7f5f7db4713aeeff03480acd8ca515084cdfaad64f849c4078272a3b5ad43c79ae78ea78f149ec
7
+ data.tar.gz: 353313ddaec29915b98efcaa0f60d470b08094b729b6b8b8afb33c38c6cad0ee17f26f6ea9d5fb532fc5649fd4cb7b18382e86087b6a80e42aa648d4bee82d43
@@ -0,0 +1,12 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: paul
4
+ patreon: # Replace with a single Patreon username
5
+ open_collective: # Replace with a single Open Collective username
6
+ ko_fi: # Replace with a single Ko-fi username
7
+ tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
+ community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
+ liberapay: # Replace with a single Liberapay username
10
+ issuehunt: # Replace with a single IssueHunt username
11
+ otechie: # Replace with a single Otechie username
12
+ custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
@@ -0,0 +1,32 @@
1
+ ---
2
+ name: Lint
3
+ "on": [pull_request]
4
+ jobs:
5
+ lint:
6
+ name: Pronto
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v1.0.0
10
+ - uses: actions/setup-ruby@v1
11
+ with:
12
+ ruby-version: '2.7'
13
+ - name: Install dependencies
14
+ run: |
15
+ sudo apt-get update -qq
16
+ sudo apt-get install -qqy --no-install-recommends yamllint jq
17
+ gem install bundler --no-document
18
+ bundle install
19
+ gem install --no-document \
20
+ pronto \
21
+ pronto-brakeman \
22
+ pronto-flay \
23
+ pronto-reek \
24
+ pronto-rubocop \
25
+ pronto-yamllint
26
+
27
+ - name: Pronto
28
+ env:
29
+ PRONTO_GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
+ run: |
31
+ export PRONTO_PULL_REQUEST_ID=$(jq .number -r $GITHUB_EVENT_PATH)
32
+ pronto run -c origin/master -f github_status github_pr_review text
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: Test
3
+ "on": [pull_request]
4
+ jobs:
5
+ rspec:
6
+ name: RSpec
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ ruby:
11
+ - 2.4.x
12
+ - 2.5.x
13
+ - 2.6.x
14
+ - 2.7.x
15
+ steps:
16
+ - uses: actions/checkout@v1
17
+ - uses: actions/setup-ruby@v1
18
+ with:
19
+ ruby-version: ${{ matrix.ruby }}
20
+ - name: Install dependencies
21
+ run: |
22
+ gem install bundler --no-document
23
+ bundle install
24
+
25
+ - name: RSpec
26
+ run: |
27
+ rspec
data/.gitignore CHANGED
@@ -2,3 +2,12 @@
2
2
  .bundle
3
3
  Gemfile.lock
4
4
  pkg/*
5
+
6
+ # Rubocop inherited configs
7
+ .rubocop-http*
8
+
9
+ # Editor junk
10
+ .DS_Store
11
+ .vscode
12
+ .idea
13
+
@@ -0,0 +1,51 @@
1
+ ---
2
+ exclude_paths:
3
+ - bin
4
+
5
+ detectors:
6
+ UtilityFunction:
7
+ public_methods_only: true
8
+
9
+ TooManyStatements:
10
+ exclude:
11
+ - initialize
12
+ max_statements: 8
13
+
14
+ RepeatedConditional:
15
+ max_ifs: 4
16
+
17
+ LongParameterList:
18
+ exclude:
19
+ - initialize
20
+
21
+ # This one just makes sure the Class/Module has a comment. Dumb.
22
+ IrresponsibleModule:
23
+ enabled: false
24
+
25
+ # Transaction result blocks are 3-deep
26
+ NestedIterators:
27
+ max_allowed_nesting: 3
28
+
29
+ UncommunicativeVariableName:
30
+ accept:
31
+ - i # array index
32
+ - c # config
33
+ - k # key
34
+ - v # value
35
+ - h # hash initializer (Hash.new { |h,k| h[k] = Hash.new })
36
+ - "_"
37
+ UncommunicativeModuleName:
38
+ accept:
39
+ - Auth0
40
+
41
+ # AS::Subscriber objects tend to rely heavily on `event` and `payload`, so its
42
+ # hard to avoid "Feature Envy", but is perfectly readable.
43
+ FeatureEnvy:
44
+ enabled: false
45
+
46
+ directories:
47
+ "spec/support":
48
+ UtilityFunction:
49
+ enabled: false
50
+
51
+ # vi:syntax=yaml
@@ -0,0 +1,113 @@
1
+ ---
2
+ inherit_from:
3
+ - https://relaxed.ruby.style/rubocop.yml
4
+
5
+ require:
6
+ - rubocop-rspec
7
+
8
+ AllCops:
9
+ DisplayCopNames: true
10
+ DisplayStyleGuide: true
11
+ NewCops: enable
12
+ TargetRubyVersion: 2.6
13
+
14
+ Exclude:
15
+ - "vendor/**/*"
16
+ - "spec/fixtures/**/*"
17
+ - "bin/**/*"
18
+ - "script/**/*"
19
+ - "tmp/**/*"
20
+
21
+ Layout/HashAlignment:
22
+ EnforcedHashRocketStyle: table
23
+ EnforcedColonStyle: table
24
+ Lint/AmbiguousBlockAssociation:
25
+ Exclude:
26
+ - "spec/**/*" # `expect { }.to change { }` is fine
27
+ Lint/ShadowingOuterLocalVariable:
28
+ # Shadowing outer local variables with block parameters is often useful to
29
+ # not reinvent a new name for the same thing, it highlights the relation
30
+ # between the outer variable and the parameter. The cases where it's actually
31
+ # confusing are rare, and usually bad for other reasons already, for example
32
+ # because the method is too long.
33
+ Enabled: false
34
+ Metrics/BlockLength:
35
+ Exclude:
36
+ - Gemfile
37
+ - Guardfile
38
+ - shared_context
39
+ - feature
40
+ ExcludedMethods:
41
+ - configure
42
+ - context
43
+ - define
44
+ - describe
45
+ - factory
46
+ - it
47
+ - namespace
48
+ - specify
49
+ - task
50
+ - shared_examples_for
51
+ - shared_context
52
+ - feature
53
+ - define_type
54
+ Layout/LineLength:
55
+ Enabled: true
56
+ Max: 120
57
+ Metrics/ClassLength:
58
+ Exclude:
59
+ - "spec/**/*_spec.rb"
60
+ Naming/RescuedExceptionsVariableName:
61
+ PreferredName: ex
62
+ Naming/FileName:
63
+ Enabled: false
64
+ Naming/MethodParameterName:
65
+ Enabled: false
66
+ Style/EmptyLiteral:
67
+ Enabled: false
68
+ Style/FormatStringToken:
69
+ Enabled: false
70
+ Style/FrozenStringLiteralComment:
71
+ Enabled: true
72
+ Style/HashSyntax:
73
+ Exclude:
74
+ - lib/tasks/**/*.rake
75
+ Style/NumericLiterals:
76
+ Enabled: false
77
+ Style/StringConcatenation:
78
+ Enabled: false
79
+ Style/StringLiterals:
80
+ Enabled: true
81
+ EnforcedStyle: double_quotes
82
+ Style/SymbolArray:
83
+ MinSize: 4
84
+
85
+ # Rspec
86
+ Capybara/FeatureMethods:
87
+ Enabled: false
88
+ RSpec/ContextWording:
89
+ Enabled: false
90
+ RSpec/DescribeClass:
91
+ Enabled: false
92
+ RSpec/DescribedClass:
93
+ Enabled: false
94
+ RSpec/ExampleLength:
95
+ Max: 10
96
+ RSpec/ExampleWording:
97
+ Enabled: false
98
+ RSpec/ExpectChange:
99
+ EnforcedStyle: block
100
+ RSpec/ImplicitExpect:
101
+ Enabled: false
102
+ RSpec/LeadingSubject:
103
+ Enabled: false
104
+ RSpec/MultipleExpectations:
105
+ Max: 4
106
+ RSpec/NestedGroups:
107
+ Max: 4
108
+ RSpec/NotToNot:
109
+ Enabled: false
110
+ RSpec/ExpectInHook:
111
+ Enabled: false
112
+ RSpec/LetSetup:
113
+ Enabled: false
@@ -1,16 +1,12 @@
1
1
  script: rake spec
2
2
  rvm:
3
- - 1.9.3
4
- - 2.0.0
5
- - 2.1.2
3
+ - 2.2
4
+ - 2.3
5
+ - 2.4.0-preview3
6
6
  - ruby-head
7
- - jruby-19mode
8
- - jruby-head
9
- - rbx-2
10
7
 
11
8
  matrix:
12
9
  allow_failures:
13
10
  - rvm:
14
- - rbx-2.1.1
15
- - jruby-head
11
+ - 2.4.0-preview3
16
12
  - ruby-head
@@ -0,0 +1,18 @@
1
+ # 1.3.2
2
+
3
+ * Added `ProgressBar#puts`, to be able to print text to the output without
4
+ interfering with the rendering of the bar output.
5
+ [#56](https://github.com/paul/progress_bar/pull/56) Thanks to
6
+ [TRex22](https://github.com/TRex22) for the suggestion in
7
+ [#44](https://github.com/paul/progress_bar/pull/44).
8
+
9
+ # 1.3.1
10
+
11
+ * Added support for passing bar options to `Enumerable#with_progress`
12
+ extension.
13
+
14
+ # 1.3.0
15
+
16
+ * Relaxed highline gem requirement to allow highline 2.0 as well as 1.6+
17
+
18
+
data/Gemfile CHANGED
@@ -1,4 +1,6 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # A sample Gemfile
2
- source "http://rubygems.org"
4
+ source "https://rubygems.org"
3
5
 
4
6
  gemspec
data/README.mkd CHANGED
@@ -1,6 +1,6 @@
1
1
  # ProgressBar
2
2
 
3
- [![Build Status](https://travis-ci.org/paul/progress_bar.png?branch=master)](https://travis-ci.org/paul/progress_bar)[![Gem Version](https://badge.fury.io/rb/progress_bar.svg)](http://badge.fury.io/rb/progress_bar)
3
+ [![Build Status](https://github.com/paul/progress_bar/workflows/Test/badge.svg)](https://github.com/paul/progress_bar/actions)[![Gem Version](https://badge.fury.io/rb/progress_bar.svg)](http://badge.fury.io/rb/progress_bar)
4
4
 
5
5
  *ProgressBar* is a simple Ruby library for displaying progress of
6
6
  long-running tasks on the console. It is intended to be as simple to use
@@ -20,14 +20,16 @@ lots of progress bar alternatives, and we thank you for using ProgressBar!
20
20
 
21
21
  ## The Easy Way
22
22
 
23
+ ```ruby
24
+ require 'progress_bar'
23
25
 
24
- require 'progress_bar'
25
- bar = ProgressBar.new
26
+ bar = ProgressBar.new
26
27
 
27
- 100.times do
28
- sleep 0.1
29
- bar.increment!
30
- end
28
+ 100.times do
29
+ sleep 0.1
30
+ bar.increment!
31
+ end
32
+ ```
31
33
 
32
34
  Produces output like:
33
35
 
@@ -42,15 +44,43 @@ it.*
42
44
  Usually, the defaults should be fine, the only thing you'll need to
43
45
  tweak is the max.
44
46
 
45
- bar = ProgressBar.new(1000)
47
+ ```ruby
48
+ bar = ProgressBar.new(1000)
49
+ ```
46
50
 
47
51
  ## Larger Steps
48
52
 
49
53
  If you want to process several things, and update less often, you can
50
54
  pass a number to `#increment!`
51
55
 
56
+ ```ruby
52
57
  bar.increment! 42
58
+ ```
59
+
60
+ ## Printing additional output
61
+
62
+ Sometimes you want to print some additional messages in the output, but since the ProgressBar uses terminal control characters to replace the text on the same line on every update, the output looks funny:
63
+
64
+ [####################################### ] [ 59.00%] [00:06]
65
+ Hello!
66
+ [######################################### ] [ 60.00%] [00:05]
67
+
68
+ To prevent this, you can use `ProgressBar#puts` so ProgressBar knows you want to print something, and it'll clear the bar before printing, then resume printing on the next line:
69
+
70
+ ```ruby
71
+ 100.times do |i|
72
+ sleep 0.1
73
+ bar.puts "Halfway there!" if i == 50
74
+ bar.increment!
75
+ end
76
+ ```
77
+
78
+ Produces output like:
79
+
80
+ Halfway there!
81
+ [##################################] [100/100] [100%] [00:10] [00:00] [ 9.98/s]
53
82
 
83
+ Try it out in `examples/printing_messages.rb` to see how it looks.
54
84
 
55
85
  ## Picking the meters
56
86
 
@@ -58,7 +88,9 @@ By default, ProgressBar will use all available meters (this will
58
88
  probably change). To select which meters you want, and in which order,
59
89
  pass them to the constructor:
60
90
 
61
- bar = ProgressBar.new(100, :bar, :rate, :eta)
91
+ ```ruby
92
+ bar = ProgressBar.new(100, :bar, :rate, :eta)
93
+ ```
62
94
 
63
95
 
64
96
  ### Available Meters
@@ -81,6 +113,38 @@ gem install --development progress_bar
81
113
  rspec spec/*_spec.rb
82
114
  ```
83
115
 
116
+ ## Using ProgressBar on Enumerable-alikes.
117
+
118
+ If you do a lot of progresses, you can shorten your way with this:
119
+
120
+ ```ruby
121
+ class Array
122
+ include ProgressBar::WithProgress
123
+ end
124
+
125
+ [1,2,3].each_with_progress{do_something}
126
+
127
+ # or any other Enumerable's methods:
128
+
129
+ (1..1000).to_a.with_progress.select{|i| (i % 2).zero?}
130
+ ```
84
131
 
132
+ You can include `ProgressBar::WithProgress` in any class, having methods
133
+ `#count` and `#each`, like some DB datasets and so on.
85
134
 
135
+ If you are using progress_bar regularly on plain arrays, you may want to
136
+ do:
86
137
 
138
+ ```ruby
139
+ require 'progress_bar/core_ext/enumerable_with_progress'
140
+
141
+ # it adds each_with_progress/with_progress to Array/Hash/Range
142
+
143
+ (1..400).with_progress.select{|i| (i % 2).zero?}
144
+ ```
145
+
146
+ If you want to display only specific meters you can do it like so:
147
+
148
+ ```ruby
149
+ (1..400).with_progress(:bar, :elapsed).select{|i| (i % 2).zero?}
150
+ ```
data/Rakefile CHANGED
@@ -1,6 +1,8 @@
1
- require 'bundler'
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler"
2
4
  Bundler::GemHelper.install_tasks
3
5
 
4
- require 'rspec/core/rake_task'
6
+ require "rspec/core/rake_task"
5
7
  RSpec::Core::RakeTask.new(:spec)
6
- task :default => :spec
8
+ task default: :spec