mootool 0.1.2 → 0.2.2

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.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/.DS_Store +0 -0
  3. data/.github/workflows/ci.yml +15 -15
  4. data/.github/workflows/gem-push.yml +26 -26
  5. data/.overcommit.yml +79 -0
  6. data/.rubocop.yml +147 -0
  7. data/.ruby-version +1 -1
  8. data/.run/All Specs.run.xml +46 -0
  9. data/CODE_OF_CONDUCT.md +2 -1
  10. data/Gemfile +14 -11
  11. data/Gemfile.lock +90 -32
  12. data/README.md +12 -6
  13. data/bin/tapioca +27 -0
  14. data/lib/mootool/command.rb +1 -0
  15. data/lib/mootool/controller_base.rb +4 -1
  16. data/lib/mootool/controllers/dwarf.rb +8 -0
  17. data/lib/mootool/controllers/dyld_linker.rb +8 -0
  18. data/lib/mootool/controllers/dyld_shared_cache.rb +8 -0
  19. data/lib/mootool/controllers/fat_binary.rb +8 -0
  20. data/lib/mootool/controllers/kernel_collection.rb +21 -15
  21. data/lib/mootool/controllers/sections.rb +8 -0
  22. data/lib/mootool/core_extensions.rb +26 -0
  23. data/lib/mootool/models/device_tree.rb +85 -0
  24. data/lib/mootool/models/img4.rb +49 -0
  25. data/lib/mootool/models/ipsw.rb +19 -0
  26. data/lib/mootool/version.rb +1 -1
  27. data/lib/mootool/views/sections.full.erb +2 -2
  28. data/lib/mootool.rb +10 -3
  29. data/mootool.gemspec +17 -12
  30. data/sorbet/rbi/annotations/rainbow.rbi +269 -0
  31. data/sorbet/rbi/gems/ast@2.4.2.rbi +618 -0
  32. data/sorbet/rbi/gems/childprocess@4.1.0.rbi +447 -0
  33. data/sorbet/rbi/gems/coderay@1.1.3.rbi +8 -0
  34. data/sorbet/rbi/gems/diff-lcs@1.5.0.rbi +1219 -0
  35. data/sorbet/rbi/gems/iniparse@1.5.0.rbi +1007 -0
  36. data/sorbet/rbi/gems/json@2.6.2.rbi +1650 -0
  37. data/sorbet/rbi/gems/method_source@1.0.0.rbi +8 -0
  38. data/sorbet/rbi/gems/netrc@0.11.0.rbi +186 -0
  39. data/sorbet/rbi/gems/overcommit@0.59.1.rbi +2747 -0
  40. data/sorbet/rbi/gems/parallel@1.22.1.rbi +353 -0
  41. data/sorbet/rbi/gems/parser@3.1.2.1.rbi +6198 -0
  42. data/sorbet/rbi/gems/plist@3.6.0.rbi +212 -0
  43. data/sorbet/rbi/gems/pry@0.14.1.rbi +8 -0
  44. data/sorbet/rbi/gems/rainbow@3.1.1.rbi +452 -0
  45. data/sorbet/rbi/gems/rake@13.0.6.rbi +3587 -0
  46. data/sorbet/rbi/gems/rbi@0.0.15.rbi +3619 -0
  47. data/sorbet/rbi/gems/regexp_parser@2.5.0.rbi +3927 -0
  48. data/sorbet/rbi/gems/rexml@3.2.5.rbi +5238 -0
  49. data/sorbet/rbi/gems/rspec-core@3.11.0.rbi +12834 -0
  50. data/sorbet/rbi/gems/rspec-expectations@3.11.0.rbi +9151 -0
  51. data/sorbet/rbi/gems/rspec-mocks@3.11.1.rbi +6506 -0
  52. data/sorbet/rbi/gems/rspec-support@3.11.0.rbi +2040 -0
  53. data/sorbet/rbi/gems/rspec@3.11.0.rbi +120 -0
  54. data/sorbet/rbi/gems/rubocop-ast@1.21.0.rbi +7990 -0
  55. data/sorbet/rbi/gems/rubocop-rake@0.6.0.rbi +413 -0
  56. data/sorbet/rbi/gems/rubocop-rspec@2.12.1.rbi +7604 -0
  57. data/sorbet/rbi/gems/rubocop@1.35.0.rbi +62260 -0
  58. data/sorbet/rbi/gems/ruby-macho@3.0.0.rbi +5039 -0
  59. data/sorbet/rbi/gems/ruby-progressbar@1.11.0.rbi +1445 -0
  60. data/sorbet/rbi/gems/rubyzip@2.3.2.rbi +2868 -0
  61. data/sorbet/rbi/gems/spoom@1.1.12.rbi +2829 -0
  62. data/sorbet/rbi/gems/tapioca@0.9.3.rbi +2151 -0
  63. data/sorbet/rbi/gems/thor@1.2.1.rbi +4532 -0
  64. data/sorbet/rbi/gems/unicode-display_width@2.2.0.rbi +60 -0
  65. data/sorbet/rbi/gems/unparser@0.6.5.rbi +8 -0
  66. data/sorbet/rbi/gems/webrick@1.7.0.rbi +3075 -0
  67. data/sorbet/rbi/gems/yard-sorbet@0.6.1.rbi +458 -0
  68. data/sorbet/rbi/gems/yard@0.9.28.rbi +20844 -0
  69. data/sorbet/rbi/sorbet-typed/lib/rainbow/all/rainbow.rbi +72 -24
  70. data/sorbet/rbi/sorbet-typed/lib/rake/all/rake.rbi +1697 -385
  71. data/sorbet/rbi/sorbet-typed/lib/rspec-core/all/rspec-core.rbi +30 -7
  72. data/sorbet/rbi/sorbet-typed/lib/rubocop/>=1.8/rubocop.rbi +3 -1
  73. data/sorbet/rbi/todo.rbi +7 -0
  74. data/sorbet/tapioca/config.yml +13 -0
  75. data/sorbet/tapioca/require.rb +4 -0
  76. metadata +90 -10
@@ -0,0 +1,1445 @@
1
+ # typed: true
2
+
3
+ # DO NOT EDIT MANUALLY
4
+ # This is an autogenerated file for types exported from the `ruby-progressbar` gem.
5
+ # Please instead update this file by running `bin/tapioca gem ruby-progressbar`.
6
+
7
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:1
8
+ class ProgressBar
9
+ class << self
10
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar.rb:19
11
+ def create(*args)
12
+ ;
13
+ end
14
+ end
15
+ end
16
+
17
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:4
18
+ class ProgressBar::Base
19
+ extend ::Forwardable
20
+
21
+ # @return [Base] a new instance of Base
22
+ #
23
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:16
24
+ def initialize(options = T.unsafe(nil))
25
+ ;
26
+ end
27
+
28
+ # source://RUBY_ROOT/forwardable.rb:229
29
+ def clear(*args, **_arg1, &block)
30
+ ;
31
+ end
32
+
33
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:88
34
+ def decrement; end
35
+
36
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:44
37
+ def finish; end
38
+
39
+ # @return [Boolean]
40
+ #
41
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:80
42
+ def finished?; end
43
+
44
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:154
45
+ def format(other)
46
+ ;
47
+ end
48
+
49
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:154
50
+ def format=(other)
51
+ ;
52
+ end
53
+
54
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:92
55
+ def increment; end
56
+
57
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:150
58
+ def inspect; end
59
+
60
+ # source://RUBY_ROOT/forwardable.rb:229
61
+ def log(*args, **_arg1, &block)
62
+ ;
63
+ end
64
+
65
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:54
66
+ def pause; end
67
+
68
+ # @return [Boolean]
69
+ #
70
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:74
71
+ def paused?; end
72
+
73
+ # source://RUBY_ROOT/forwardable.rb:229
74
+ def progress(*args, **_arg1, &block)
75
+ ;
76
+ end
77
+
78
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:96
79
+ def progress=(new_progress)
80
+ ;
81
+ end
82
+
83
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:104
84
+ def progress_mark=(mark)
85
+ ;
86
+ end
87
+
88
+ # source://RUBY_ROOT/forwardable.rb:229
89
+ def refresh(*args, **_arg1, &block)
90
+ ;
91
+ end
92
+
93
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:108
94
+ def remainder_mark=(mark)
95
+ ;
96
+ end
97
+
98
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:66
99
+ def reset; end
100
+
101
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:62
102
+ def resume; end
103
+
104
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:39
105
+ def start(options = T.unsafe(nil))
106
+ ;
107
+ end
108
+
109
+ # @return [Boolean]
110
+ #
111
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:84
112
+ def started?; end
113
+
114
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:58
115
+ def stop; end
116
+
117
+ # @return [Boolean]
118
+ #
119
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:74
120
+ def stopped?; end
121
+
122
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:112
123
+ def title; end
124
+
125
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:116
126
+ def title=(title)
127
+ ;
128
+ end
129
+
130
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:127
131
+ def to_h; end
132
+
133
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:120
134
+ def to_s(new_format = T.unsafe(nil))
135
+ ;
136
+ end
137
+
138
+ # source://RUBY_ROOT/forwardable.rb:229
139
+ def total(*args, **_arg1, &block)
140
+ ;
141
+ end
142
+
143
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:100
144
+ def total=(new_total)
145
+ ;
146
+ end
147
+
148
+ protected
149
+
150
+ # Returns the value of attribute autofinish.
151
+ #
152
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
153
+ def autofinish; end
154
+
155
+ # Sets the attribute autofinish
156
+ #
157
+ # @param value the value to set the attribute autofinish to.
158
+ #
159
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
160
+ def autofinish=(_arg0)
161
+ ;
162
+ end
163
+
164
+ # Returns the value of attribute autostart.
165
+ #
166
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
167
+ def autostart; end
168
+
169
+ # Sets the attribute autostart
170
+ #
171
+ # @param value the value to set the attribute autostart to.
172
+ #
173
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
174
+ def autostart=(_arg0)
175
+ ;
176
+ end
177
+
178
+ # Returns the value of attribute bar.
179
+ #
180
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
181
+ def bar; end
182
+
183
+ # Sets the attribute bar
184
+ #
185
+ # @param value the value to set the attribute bar to.
186
+ #
187
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
188
+ def bar=(_arg0)
189
+ ;
190
+ end
191
+
192
+ # Returns the value of attribute finished.
193
+ #
194
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
195
+ def finished; end
196
+
197
+ # Sets the attribute finished
198
+ #
199
+ # @param value the value to set the attribute finished to.
200
+ #
201
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
202
+ def finished=(_arg0)
203
+ ;
204
+ end
205
+
206
+ # Returns the value of attribute output.
207
+ #
208
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
209
+ def output; end
210
+
211
+ # Sets the attribute output
212
+ #
213
+ # @param value the value to set the attribute output to.
214
+ #
215
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
216
+ def output=(_arg0)
217
+ ;
218
+ end
219
+
220
+ # Returns the value of attribute percentage.
221
+ #
222
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
223
+ def percentage; end
224
+
225
+ # Sets the attribute percentage
226
+ #
227
+ # @param value the value to set the attribute percentage to.
228
+ #
229
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
230
+ def percentage=(_arg0)
231
+ ;
232
+ end
233
+
234
+ # Returns the value of attribute progressable.
235
+ #
236
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
237
+ def progressable; end
238
+
239
+ # Sets the attribute progressable
240
+ #
241
+ # @param value the value to set the attribute progressable to.
242
+ #
243
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
244
+ def progressable=(_arg0)
245
+ ;
246
+ end
247
+
248
+ # Returns the value of attribute rate.
249
+ #
250
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
251
+ def rate; end
252
+
253
+ # Sets the attribute rate
254
+ #
255
+ # @param value the value to set the attribute rate to.
256
+ #
257
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
258
+ def rate=(_arg0)
259
+ ;
260
+ end
261
+
262
+ # Returns the value of attribute time.
263
+ #
264
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
265
+ def time; end
266
+
267
+ # Sets the attribute time
268
+ #
269
+ # @param value the value to set the attribute time to.
270
+ #
271
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
272
+ def time=(_arg0)
273
+ ;
274
+ end
275
+
276
+ # Returns the value of attribute timer.
277
+ #
278
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
279
+ def timer; end
280
+
281
+ # Sets the attribute timer
282
+ #
283
+ # @param value the value to set the attribute timer to.
284
+ #
285
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
286
+ def timer=(_arg0)
287
+ ;
288
+ end
289
+
290
+ # Returns the value of attribute title_comp.
291
+ #
292
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
293
+ def title_comp; end
294
+
295
+ # Sets the attribute title_comp
296
+ #
297
+ # @param value the value to set the attribute title_comp to.
298
+ #
299
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:164
300
+ def title_comp=(_arg0)
301
+ ;
302
+ end
303
+
304
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/base.rb:176
305
+ def update_progress(*args)
306
+ ;
307
+ end
308
+ end
309
+
310
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:2
311
+ module ProgressBar::Calculators
312
+ ;
313
+ end
314
+
315
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:3
316
+ class ProgressBar::Calculators::Length
317
+ # @return [Length] a new instance of Length
318
+ #
319
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:8
320
+ def initialize(options = T.unsafe(nil))
321
+ ;
322
+ end
323
+
324
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:25
325
+ def calculate_length; end
326
+
327
+ # Returns the value of attribute current_length.
328
+ #
329
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:5
330
+ def current_length; end
331
+
332
+ # Sets the attribute current_length
333
+ #
334
+ # @param value the value to set the attribute current_length to.
335
+ #
336
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:5
337
+ def current_length=(_arg0)
338
+ ;
339
+ end
340
+
341
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:14
342
+ def length; end
343
+
344
+ # @return [Boolean]
345
+ #
346
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:18
347
+ def length_changed?; end
348
+
349
+ # Returns the value of attribute length_override.
350
+ #
351
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:4
352
+ def length_override; end
353
+
354
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:33
355
+ def length_override=(other)
356
+ ;
357
+ end
358
+
359
+ # Returns the value of attribute output.
360
+ #
361
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:5
362
+ def output; end
363
+
364
+ # Sets the attribute output
365
+ #
366
+ # @param value the value to set the attribute output to.
367
+ #
368
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:5
369
+ def output=(_arg0)
370
+ ;
371
+ end
372
+
373
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:29
374
+ def reset_length; end
375
+
376
+ private
377
+
378
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:57
379
+ def dynamic_width; end
380
+
381
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:87
382
+ def dynamic_width_stty; end
383
+
384
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:91
385
+ def dynamic_width_tput; end
386
+
387
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:78
388
+ def dynamic_width_via_io_object; end
389
+
390
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:73
391
+ def dynamic_width_via_output_stream_object; end
392
+
393
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:83
394
+ def dynamic_width_via_system_calls; end
395
+
396
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:43
397
+ def terminal_width; end
398
+
399
+ # @return [Boolean]
400
+ #
401
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/length.rb:95
402
+ def unix?; end
403
+ end
404
+
405
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/running_average.rb:3
406
+ class ProgressBar::Calculators::RunningAverage
407
+ class << self
408
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/calculators/running_average.rb:4
409
+ def calculate(current_average, new_value_to_average, smoothing_factor)
410
+ ;
411
+ end
412
+ end
413
+ end
414
+
415
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:5
416
+ module ProgressBar::Components
417
+ ;
418
+ end
419
+
420
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:6
421
+ class ProgressBar::Components::Bar
422
+ # @return [Bar] a new instance of Bar
423
+ #
424
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:17
425
+ def initialize(options = T.unsafe(nil))
426
+ ;
427
+ end
428
+
429
+ # Returns the value of attribute length.
430
+ #
431
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:11
432
+ def length; end
433
+
434
+ # Sets the attribute length
435
+ #
436
+ # @param value the value to set the attribute length to.
437
+ #
438
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:11
439
+ def length=(_arg0)
440
+ ;
441
+ end
442
+
443
+ # Returns the value of attribute progress.
444
+ #
445
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:11
446
+ def progress; end
447
+
448
+ # Sets the attribute progress
449
+ #
450
+ # @param value the value to set the attribute progress to.
451
+ #
452
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:11
453
+ def progress=(_arg0)
454
+ ;
455
+ end
456
+
457
+ # Returns the value of attribute progress_mark.
458
+ #
459
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:11
460
+ def progress_mark; end
461
+
462
+ # Sets the attribute progress_mark
463
+ #
464
+ # @param value the value to set the attribute progress_mark to.
465
+ #
466
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:11
467
+ def progress_mark=(_arg0)
468
+ ;
469
+ end
470
+
471
+ # Returns the value of attribute remainder_mark.
472
+ #
473
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:11
474
+ def remainder_mark; end
475
+
476
+ # Sets the attribute remainder_mark
477
+ #
478
+ # @param value the value to set the attribute remainder_mark to.
479
+ #
480
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:11
481
+ def remainder_mark=(_arg0)
482
+ ;
483
+ end
484
+
485
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:25
486
+ def to_s(options = T.unsafe(nil))
487
+ ;
488
+ end
489
+
490
+ # Returns the value of attribute upa_steps.
491
+ #
492
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:11
493
+ def upa_steps; end
494
+
495
+ # Sets the attribute upa_steps
496
+ #
497
+ # @param value the value to set the attribute upa_steps to.
498
+ #
499
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:11
500
+ def upa_steps=(_arg0)
501
+ ;
502
+ end
503
+
504
+ private
505
+
506
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:51
507
+ def bar(length)
508
+ ;
509
+ end
510
+
511
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:85
512
+ def bar_with_percentage(length)
513
+ ;
514
+ end
515
+
516
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:57
517
+ def complete_bar(length)
518
+ ;
519
+ end
520
+
521
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:63
522
+ def complete_bar_with_percentage(length)
523
+ ;
524
+ end
525
+
526
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:91
527
+ def completed_length; end
528
+
529
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:75
530
+ def incomplete_space(length)
531
+ ;
532
+ end
533
+
534
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:47
535
+ def incomplete_string; end
536
+
537
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:37
538
+ def integrated_percentage_complete_string; end
539
+
540
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:43
541
+ def standard_complete_string; end
542
+
543
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:95
544
+ def unknown_progress_frame; end
545
+
546
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:69
547
+ def unknown_string; end
548
+ end
549
+
550
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:7
551
+ ProgressBar::Components::Bar::DEFAULT_PROGRESS_MARK = T.let(T.unsafe(nil), String)
552
+
553
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:8
554
+ ProgressBar::Components::Bar::DEFAULT_REMAINDER_MARK = T.let(T.unsafe(nil), String)
555
+
556
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/bar.rb:9
557
+ ProgressBar::Components::Bar::DEFAULT_UPA_STEPS = T.let(T.unsafe(nil), Array)
558
+
559
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/percentage.rb:3
560
+ class ProgressBar::Components::Percentage
561
+ # @return [Percentage] a new instance of Percentage
562
+ #
563
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/percentage.rb:6
564
+ def initialize(options = T.unsafe(nil))
565
+ ;
566
+ end
567
+
568
+ # Returns the value of attribute progress.
569
+ #
570
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/percentage.rb:4
571
+ def progress; end
572
+
573
+ # Sets the attribute progress
574
+ #
575
+ # @param value the value to set the attribute progress to.
576
+ #
577
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/percentage.rb:4
578
+ def progress=(_arg0)
579
+ ;
580
+ end
581
+
582
+ private
583
+
584
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/percentage.rb:16
585
+ def justified_percentage; end
586
+
587
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/percentage.rb:24
588
+ def justified_percentage_with_precision; end
589
+
590
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/percentage.rb:12
591
+ def percentage; end
592
+
593
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/percentage.rb:20
594
+ def percentage_with_precision; end
595
+ end
596
+
597
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:3
598
+ class ProgressBar::Components::Rate
599
+ # @return [Rate] a new instance of Rate
600
+ #
601
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:10
602
+ def initialize(options = T.unsafe(nil))
603
+ ;
604
+ end
605
+
606
+ # Returns the value of attribute progress.
607
+ #
608
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:4
609
+ def progress; end
610
+
611
+ # Sets the attribute progress
612
+ #
613
+ # @param value the value to set the attribute progress to.
614
+ #
615
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:4
616
+ def progress=(_arg0)
617
+ ;
618
+ end
619
+
620
+ # Returns the value of attribute rate_scale.
621
+ #
622
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:4
623
+ def rate_scale; end
624
+
625
+ # Sets the attribute rate_scale
626
+ #
627
+ # @param value the value to set the attribute rate_scale to.
628
+ #
629
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:4
630
+ def rate_scale=(_arg0)
631
+ ;
632
+ end
633
+
634
+ # Returns the value of attribute started_at.
635
+ #
636
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:4
637
+ def started_at; end
638
+
639
+ # Sets the attribute started_at
640
+ #
641
+ # @param value the value to set the attribute started_at to.
642
+ #
643
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:4
644
+ def started_at=(_arg0)
645
+ ;
646
+ end
647
+
648
+ # Returns the value of attribute stopped_at.
649
+ #
650
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:4
651
+ def stopped_at; end
652
+
653
+ # Sets the attribute stopped_at
654
+ #
655
+ # @param value the value to set the attribute stopped_at to.
656
+ #
657
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:4
658
+ def stopped_at=(_arg0)
659
+ ;
660
+ end
661
+
662
+ # Returns the value of attribute timer.
663
+ #
664
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:4
665
+ def timer; end
666
+
667
+ # Sets the attribute timer
668
+ #
669
+ # @param value the value to set the attribute timer to.
670
+ #
671
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:4
672
+ def timer=(_arg0)
673
+ ;
674
+ end
675
+
676
+ private
677
+
678
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:34
679
+ def base_rate; end
680
+
681
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:38
682
+ def elapsed_seconds; end
683
+
684
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:20
685
+ def rate_of_change(format_string = T.unsafe(nil))
686
+ ;
687
+ end
688
+
689
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:26
690
+ def rate_of_change_with_precision; end
691
+
692
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/rate.rb:30
693
+ def scaled_rate; end
694
+ end
695
+
696
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:6
697
+ class ProgressBar::Components::Time
698
+ # @return [Time] a new instance of Time
699
+ #
700
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:20
701
+ def initialize(options = T.unsafe(nil))
702
+ ;
703
+ end
704
+
705
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:30
706
+ def elapsed_with_label; end
707
+
708
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:26
709
+ def estimated_with_label; end
710
+
711
+ protected
712
+
713
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:48
714
+ def estimated_with_friendly_oob; end
715
+
716
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:36
717
+ def estimated_with_no_oob; end
718
+
719
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:42
720
+ def estimated_with_unknown_oob; end
721
+
722
+ # Returns the value of attribute out_of_bounds_time_format.
723
+ #
724
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:54
725
+ def out_of_bounds_time_format; end
726
+
727
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:58
728
+ def out_of_bounds_time_format=(format)
729
+ ;
730
+ end
731
+
732
+ # Returns the value of attribute progress.
733
+ #
734
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:55
735
+ def progress; end
736
+
737
+ # Sets the attribute progress
738
+ #
739
+ # @param value the value to set the attribute progress to.
740
+ #
741
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:55
742
+ def progress=(_arg0)
743
+ ;
744
+ end
745
+
746
+ # Returns the value of attribute timer.
747
+ #
748
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:55
749
+ def timer; end
750
+
751
+ # Sets the attribute timer
752
+ #
753
+ # @param value the value to set the attribute timer to.
754
+ #
755
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:55
756
+ def timer=(_arg0)
757
+ ;
758
+ end
759
+
760
+ private
761
+
762
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:82
763
+ def elapsed; end
764
+
765
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:68
766
+ def estimated; end
767
+
768
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:94
769
+ def estimated_seconds_remaining; end
770
+
771
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:90
772
+ def estimated_with_elapsed_fallback; end
773
+ end
774
+
775
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:14
776
+ ProgressBar::Components::Time::ELAPSED_LABEL = T.let(T.unsafe(nil), String)
777
+
778
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:13
779
+ ProgressBar::Components::Time::ESTIMATED_LABEL = T.let(T.unsafe(nil), String)
780
+
781
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:12
782
+ ProgressBar::Components::Time::NO_TIME_ELAPSED_TEXT = T.let(T.unsafe(nil), String)
783
+
784
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:11
785
+ ProgressBar::Components::Time::OOB_FRIENDLY_TIME_TEXT = T.let(T.unsafe(nil), String)
786
+
787
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:9
788
+ ProgressBar::Components::Time::OOB_LIMIT_IN_HOURS = T.let(T.unsafe(nil), Integer)
789
+
790
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:15
791
+ ProgressBar::Components::Time::OOB_TEXT_TO_FORMAT = T.let(T.unsafe(nil), Hash)
792
+
793
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:8
794
+ ProgressBar::Components::Time::OOB_TIME_FORMATS = T.let(T.unsafe(nil), Array)
795
+
796
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:10
797
+ ProgressBar::Components::Time::OOB_UNKNOWN_TIME_TEXT = T.let(T.unsafe(nil), String)
798
+
799
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/time.rb:7
800
+ ProgressBar::Components::Time::TIME_FORMAT = T.let(T.unsafe(nil), String)
801
+
802
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/title.rb:3
803
+ class ProgressBar::Components::Title
804
+ # @return [Title] a new instance of Title
805
+ #
806
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/title.rb:8
807
+ def initialize(options = T.unsafe(nil))
808
+ ;
809
+ end
810
+
811
+ # Returns the value of attribute title.
812
+ #
813
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/title.rb:6
814
+ def title; end
815
+
816
+ # Sets the attribute title
817
+ #
818
+ # @param value the value to set the attribute title to.
819
+ #
820
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/title.rb:6
821
+ def title=(_arg0)
822
+ ;
823
+ end
824
+ end
825
+
826
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/components/title.rb:4
827
+ ProgressBar::Components::Title::DEFAULT_TITLE = T.let(T.unsafe(nil), String)
828
+
829
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/molecule.rb:2
830
+ module ProgressBar::Format
831
+ ;
832
+ end
833
+
834
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/formatter.rb:3
835
+ class ProgressBar::Format::Formatter
836
+ class << self
837
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/formatter.rb:4
838
+ def process(format_string, max_length, bar)
839
+ ;
840
+ end
841
+ end
842
+ end
843
+
844
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/molecule.rb:3
845
+ class ProgressBar::Format::Molecule
846
+ # @return [Molecule] a new instance of Molecule
847
+ #
848
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/molecule.rb:32
849
+ def initialize(letter)
850
+ ;
851
+ end
852
+
853
+ # @return [Boolean]
854
+ #
855
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/molecule.rb:37
856
+ def bar_molecule?; end
857
+
858
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/molecule.rb:45
859
+ def full_key; end
860
+
861
+ # Returns the value of attribute key.
862
+ #
863
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/molecule.rb:29
864
+ def key; end
865
+
866
+ # Sets the attribute key
867
+ #
868
+ # @param value the value to set the attribute key to.
869
+ #
870
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/molecule.rb:29
871
+ def key=(_arg0)
872
+ ;
873
+ end
874
+
875
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/molecule.rb:49
876
+ def lookup_value(environment, length = T.unsafe(nil))
877
+ ;
878
+ end
879
+
880
+ # Returns the value of attribute method_name.
881
+ #
882
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/molecule.rb:29
883
+ def method_name; end
884
+
885
+ # Sets the attribute method_name
886
+ #
887
+ # @param value the value to set the attribute method_name to.
888
+ #
889
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/molecule.rb:29
890
+ def method_name=(_arg0)
891
+ ;
892
+ end
893
+
894
+ # @return [Boolean]
895
+ #
896
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/molecule.rb:41
897
+ def non_bar_molecule?; end
898
+ end
899
+
900
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/molecule.rb:27
901
+ ProgressBar::Format::Molecule::BAR_MOLECULES = T.let(T.unsafe(nil), Array)
902
+
903
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/molecule.rb:4
904
+ ProgressBar::Format::Molecule::MOLECULES = T.let(T.unsafe(nil), Hash)
905
+
906
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/string.rb:3
907
+ class ProgressBar::Format::String < ::String
908
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/string.rb:11
909
+ def bar_molecule_placeholder_length; end
910
+
911
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/string.rb:19
912
+ def bar_molecules; end
913
+
914
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/string.rb:7
915
+ def displayable_length; end
916
+
917
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/string.rb:23
918
+ def molecules; end
919
+
920
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/string.rb:15
921
+ def non_bar_molecules; end
922
+ end
923
+
924
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/string.rb:5
925
+ ProgressBar::Format::String::ANSI_SGR_PATTERN = T.let(T.unsafe(nil), Regexp)
926
+
927
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/format/string.rb:4
928
+ ProgressBar::Format::String::MOLECULE_PATTERN = T.let(T.unsafe(nil), Regexp)
929
+
930
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/errors/invalid_progress_error.rb:2
931
+ class ProgressBar::InvalidProgressError < ::RuntimeError; end
932
+
933
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:2
934
+ class ProgressBar::Output
935
+ # @return [Output] a new instance of Output
936
+ #
937
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:7
938
+ def initialize(options = T.unsafe(nil))
939
+ ;
940
+ end
941
+
942
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:34
943
+ def clear_string; end
944
+
945
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:38
946
+ def length; end
947
+
948
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:27
949
+ def log(string)
950
+ ;
951
+ end
952
+
953
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:47
954
+ def refresh(options = T.unsafe(nil))
955
+ ;
956
+ end
957
+
958
+ # Returns the value of attribute stream.
959
+ #
960
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:5
961
+ def stream; end
962
+
963
+ # Sets the attribute stream
964
+ #
965
+ # @param value the value to set the attribute stream to.
966
+ #
967
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:5
968
+ def stream=(_arg0)
969
+ ;
970
+ end
971
+
972
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:42
973
+ def with_refresh; end
974
+
975
+ protected
976
+
977
+ # Returns the value of attribute bar.
978
+ #
979
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:57
980
+ def bar; end
981
+
982
+ # Sets the attribute bar
983
+ #
984
+ # @param value the value to set the attribute bar to.
985
+ #
986
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:57
987
+ def bar=(_arg0)
988
+ ;
989
+ end
990
+
991
+ # Returns the value of attribute length_calculator.
992
+ #
993
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:57
994
+ def length_calculator; end
995
+
996
+ # Sets the attribute length_calculator
997
+ #
998
+ # @param value the value to set the attribute length_calculator to.
999
+ #
1000
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:57
1001
+ def length_calculator=(_arg0)
1002
+ ;
1003
+ end
1004
+
1005
+ # Returns the value of attribute throttle.
1006
+ #
1007
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:57
1008
+ def throttle; end
1009
+
1010
+ # Sets the attribute throttle
1011
+ #
1012
+ # @param value the value to set the attribute throttle to.
1013
+ #
1014
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:57
1015
+ def throttle=(_arg0)
1016
+ ;
1017
+ end
1018
+
1019
+ private
1020
+
1021
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:63
1022
+ def print_and_flush; end
1023
+
1024
+ class << self
1025
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:17
1026
+ def detect(options = T.unsafe(nil))
1027
+ ;
1028
+ end
1029
+ end
1030
+ end
1031
+
1032
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:3
1033
+ ProgressBar::Output::DEFAULT_OUTPUT_STREAM = T.let(T.unsafe(nil), IO)
1034
+
1035
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/tty.rb:4
1036
+ module ProgressBar::Outputs
1037
+ ;
1038
+ end
1039
+
1040
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/non_tty.rb:5
1041
+ class ProgressBar::Outputs::NonTty < ::ProgressBar::Output
1042
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/non_tty.rb:18
1043
+ def bar_update_string; end
1044
+
1045
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/non_tty.rb:8
1046
+ def clear; end
1047
+
1048
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/non_tty.rb:28
1049
+ def default_format; end
1050
+
1051
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/non_tty.rb:38
1052
+ def eol; end
1053
+
1054
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/non_tty.rb:14
1055
+ def last_update_length; end
1056
+
1057
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/non_tty.rb:36
1058
+ def refresh_with_format_change(*_arg0)
1059
+ ;
1060
+ end
1061
+
1062
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/non_tty.rb:32
1063
+ def resolve_format(*_arg0)
1064
+ ;
1065
+ end
1066
+
1067
+ protected
1068
+
1069
+ # Sets the attribute last_update_length
1070
+ #
1071
+ # @param value the value to set the attribute last_update_length to.
1072
+ #
1073
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/non_tty.rb:44
1074
+ def last_update_length=(_arg0)
1075
+ ;
1076
+ end
1077
+ end
1078
+
1079
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/non_tty.rb:6
1080
+ ProgressBar::Outputs::NonTty::DEFAULT_FORMAT_STRING = T.let(T.unsafe(nil), String)
1081
+
1082
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/tty.rb:5
1083
+ class ProgressBar::Outputs::Tty < ::ProgressBar::Output
1084
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/tty.rb:15
1085
+ def bar_update_string; end
1086
+
1087
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/tty.rb:10
1088
+ def clear; end
1089
+
1090
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/tty.rb:19
1091
+ def default_format; end
1092
+
1093
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/tty.rb:27
1094
+ def eol; end
1095
+
1096
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/output.rb:42
1097
+ def refresh_with_format_change; end
1098
+
1099
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/tty.rb:23
1100
+ def resolve_format(other_format)
1101
+ ;
1102
+ end
1103
+ end
1104
+
1105
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/outputs/tty.rb:6
1106
+ ProgressBar::Outputs::Tty::DEFAULT_FORMAT_STRING = T.let(T.unsafe(nil), String)
1107
+
1108
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:4
1109
+ class ProgressBar::Progress
1110
+ # @return [Progress] a new instance of Progress
1111
+ #
1112
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:16
1113
+ def initialize(options = T.unsafe(nil))
1114
+ ;
1115
+ end
1116
+
1117
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:114
1118
+ def absolute; end
1119
+
1120
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:47
1121
+ def decrement; end
1122
+
1123
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:29
1124
+ def finish; end
1125
+
1126
+ # @return [Boolean]
1127
+ #
1128
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:33
1129
+ def finished?; end
1130
+
1131
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:37
1132
+ def increment; end
1133
+
1134
+ # @return [Boolean]
1135
+ #
1136
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:95
1137
+ def none?; end
1138
+
1139
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:83
1140
+ def percentage_completed; end
1141
+
1142
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:107
1143
+ def percentage_completed_with_precision; end
1144
+
1145
+ # Returns the value of attribute progress.
1146
+ #
1147
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:9
1148
+ def progress; end
1149
+
1150
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:61
1151
+ def progress=(new_progress)
1152
+ ;
1153
+ end
1154
+
1155
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:57
1156
+ def reset; end
1157
+
1158
+ # Returns the value of attribute running_average.
1159
+ #
1160
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:12
1161
+ def running_average; end
1162
+
1163
+ # Sets the attribute running_average
1164
+ #
1165
+ # @param value the value to set the attribute running_average to.
1166
+ #
1167
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:12
1168
+ def running_average=(_arg0)
1169
+ ;
1170
+ end
1171
+
1172
+ # Returns the value of attribute smoothing.
1173
+ #
1174
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:12
1175
+ def smoothing; end
1176
+
1177
+ # Sets the attribute smoothing
1178
+ #
1179
+ # @param value the value to set the attribute smoothing to.
1180
+ #
1181
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:12
1182
+ def smoothing=(_arg0)
1183
+ ;
1184
+ end
1185
+
1186
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:23
1187
+ def start(options = T.unsafe(nil))
1188
+ ;
1189
+ end
1190
+
1191
+ # Returns the value of attribute starting_position.
1192
+ #
1193
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:12
1194
+ def starting_position; end
1195
+
1196
+ # Sets the attribute starting_position
1197
+ #
1198
+ # @param value the value to set the attribute starting_position to.
1199
+ #
1200
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:12
1201
+ def starting_position=(_arg0)
1202
+ ;
1203
+ end
1204
+
1205
+ # Returns the value of attribute total.
1206
+ #
1207
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:9
1208
+ def total; end
1209
+
1210
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:74
1211
+ def total=(new_total)
1212
+ ;
1213
+ end
1214
+
1215
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:103
1216
+ def total_with_unknown_indicator; end
1217
+
1218
+ # @return [Boolean]
1219
+ #
1220
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:99
1221
+ def unknown?; end
1222
+ end
1223
+
1224
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:6
1225
+ ProgressBar::Progress::DEFAULT_BEGINNING_POSITION = T.let(T.unsafe(nil), Integer)
1226
+
1227
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:7
1228
+ ProgressBar::Progress::DEFAULT_SMOOTHING = T.let(T.unsafe(nil), Float)
1229
+
1230
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/progress.rb:5
1231
+ ProgressBar::Progress::DEFAULT_TOTAL = T.let(T.unsafe(nil), Integer)
1232
+
1233
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/refinements/enumerator.rb:2
1234
+ module ProgressBar::Refinements
1235
+ ;
1236
+ end
1237
+
1238
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/refinements/enumerator.rb:3
1239
+ module ProgressBar::Refinements::Enumerator
1240
+ ;
1241
+ end
1242
+
1243
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/throttle.rb:2
1244
+ class ProgressBar::Throttle
1245
+ # @return [Throttle] a new instance of Throttle
1246
+ #
1247
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/throttle.rb:8
1248
+ def initialize(options = T.unsafe(nil))
1249
+ ;
1250
+ end
1251
+
1252
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/throttle.rb:15
1253
+ def choke(options = T.unsafe(nil))
1254
+ ;
1255
+ end
1256
+
1257
+ # Returns the value of attribute rate.
1258
+ #
1259
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/throttle.rb:3
1260
+ def rate; end
1261
+
1262
+ # Sets the attribute rate
1263
+ #
1264
+ # @param value the value to set the attribute rate to.
1265
+ #
1266
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/throttle.rb:3
1267
+ def rate=(_arg0)
1268
+ ;
1269
+ end
1270
+
1271
+ # Returns the value of attribute started_at.
1272
+ #
1273
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/throttle.rb:3
1274
+ def started_at; end
1275
+
1276
+ # Sets the attribute started_at
1277
+ #
1278
+ # @param value the value to set the attribute started_at to.
1279
+ #
1280
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/throttle.rb:3
1281
+ def started_at=(_arg0)
1282
+ ;
1283
+ end
1284
+
1285
+ # Returns the value of attribute stopped_at.
1286
+ #
1287
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/throttle.rb:3
1288
+ def stopped_at; end
1289
+
1290
+ # Sets the attribute stopped_at
1291
+ #
1292
+ # @param value the value to set the attribute stopped_at to.
1293
+ #
1294
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/throttle.rb:3
1295
+ def stopped_at=(_arg0)
1296
+ ;
1297
+ end
1298
+
1299
+ # Returns the value of attribute timer.
1300
+ #
1301
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/throttle.rb:3
1302
+ def timer; end
1303
+
1304
+ # Sets the attribute timer
1305
+ #
1306
+ # @param value the value to set the attribute timer to.
1307
+ #
1308
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/throttle.rb:3
1309
+ def timer=(_arg0)
1310
+ ;
1311
+ end
1312
+ end
1313
+
1314
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/time.rb:3
1315
+ class ProgressBar::Time
1316
+ # @return [Time] a new instance of Time
1317
+ #
1318
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/time.rb:11
1319
+ def initialize(time = T.unsafe(nil))
1320
+ ;
1321
+ end
1322
+
1323
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/time.rb:15
1324
+ def now; end
1325
+
1326
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/time.rb:19
1327
+ def unmocked_time_method; end
1328
+
1329
+ protected
1330
+
1331
+ # Returns the value of attribute time.
1332
+ #
1333
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/time.rb:29
1334
+ def time; end
1335
+
1336
+ # Sets the attribute time
1337
+ #
1338
+ # @param value the value to set the attribute time to.
1339
+ #
1340
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/time.rb:29
1341
+ def time=(_arg0)
1342
+ ;
1343
+ end
1344
+ end
1345
+
1346
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/time.rb:4
1347
+ ProgressBar::Time::TIME_MOCKING_LIBRARY_METHODS = T.let(T.unsafe(nil), Array)
1348
+
1349
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:4
1350
+ class ProgressBar::Timer
1351
+ # @return [Timer] a new instance of Timer
1352
+ #
1353
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:8
1354
+ def initialize(options = T.unsafe(nil))
1355
+ ;
1356
+ end
1357
+
1358
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:61
1359
+ def divide_seconds(seconds)
1360
+ ;
1361
+ end
1362
+
1363
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:53
1364
+ def elapsed_seconds; end
1365
+
1366
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:57
1367
+ def elapsed_whole_seconds; end
1368
+
1369
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:23
1370
+ def pause; end
1371
+
1372
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:39
1373
+ def reset; end
1374
+
1375
+ # @return [Boolean]
1376
+ #
1377
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:44
1378
+ def reset?; end
1379
+
1380
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:48
1381
+ def restart; end
1382
+
1383
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:27
1384
+ def resume; end
1385
+
1386
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:12
1387
+ def start; end
1388
+
1389
+ # @return [Boolean]
1390
+ #
1391
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:31
1392
+ def started?; end
1393
+
1394
+ # Returns the value of attribute started_at.
1395
+ #
1396
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:5
1397
+ def started_at; end
1398
+
1399
+ # Sets the attribute started_at
1400
+ #
1401
+ # @param value the value to set the attribute started_at to.
1402
+ #
1403
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:5
1404
+ def started_at=(_arg0)
1405
+ ;
1406
+ end
1407
+
1408
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:17
1409
+ def stop; end
1410
+
1411
+ # @return [Boolean]
1412
+ #
1413
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:35
1414
+ def stopped?; end
1415
+
1416
+ # Returns the value of attribute stopped_at.
1417
+ #
1418
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:5
1419
+ def stopped_at; end
1420
+
1421
+ # Sets the attribute stopped_at
1422
+ #
1423
+ # @param value the value to set the attribute stopped_at to.
1424
+ #
1425
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:5
1426
+ def stopped_at=(_arg0)
1427
+ ;
1428
+ end
1429
+
1430
+ protected
1431
+
1432
+ # Returns the value of attribute time.
1433
+ #
1434
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:70
1435
+ def time; end
1436
+
1437
+ # Sets the attribute time
1438
+ #
1439
+ # @param value the value to set the attribute time to.
1440
+ #
1441
+ # source://ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb:70
1442
+ def time=(_arg0)
1443
+ ;
1444
+ end
1445
+ end