gitextract_x1cqiz4d/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── BUG_REPORT.md │ │ ├── FEATURE_REQUEST.md │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── appveyor.yml ├── examples/ │ ├── color.rb │ ├── failure.rb │ ├── indeterminate.rb │ ├── iterator.rb │ ├── lazy.rb │ ├── log.rb │ ├── multi/ │ │ ├── formats.rb │ │ ├── main_bar.rb │ │ ├── resume.rb │ │ ├── simple.rb │ │ ├── single.rb │ │ └── width.rb │ ├── pause.rb │ ├── simple.rb │ ├── slow_process.rb │ ├── speed.rb │ ├── threaded.rb │ ├── tokens.rb │ ├── unicode.rb │ └── unicode_unknown.rb ├── lib/ │ ├── tty/ │ │ ├── progressbar/ │ │ │ ├── configuration.rb │ │ │ ├── converter.rb │ │ │ ├── formats.rb │ │ │ ├── formatter/ │ │ │ │ ├── bar.rb │ │ │ │ ├── byte_rate.rb │ │ │ │ ├── current.rb │ │ │ │ ├── current_byte.rb │ │ │ │ ├── elapsed.rb │ │ │ │ ├── estimated.rb │ │ │ │ ├── estimated_time.rb │ │ │ │ ├── mean_byte.rb │ │ │ │ ├── mean_rate.rb │ │ │ │ ├── percent.rb │ │ │ │ ├── rate.rb │ │ │ │ ├── total.rb │ │ │ │ └── total_byte.rb │ │ │ ├── formatter.rb │ │ │ ├── formatters.rb │ │ │ ├── meter.rb │ │ │ ├── multi.rb │ │ │ ├── pipeline.rb │ │ │ ├── timer.rb │ │ │ └── version.rb │ │ └── progressbar.rb │ └── tty-progressbar.rb ├── spec/ │ ├── perf/ │ │ └── render_spec.rb │ ├── spec_helper.rb │ ├── support/ │ │ └── output_io.rb │ └── unit/ │ ├── advance_spec.rb │ ├── bar_format_spec.rb │ ├── clear_spec.rb │ ├── complete_spec.rb │ ├── configure_spec.rb │ ├── converter/ │ │ ├── to_bytes_spec.rb │ │ ├── to_seconds_spec.rb │ │ └── to_time_spec.rb │ ├── custom_formatter_spec.rb │ ├── custom_token_spec.rb │ ├── events_spec.rb │ ├── finish_spec.rb │ ├── formatter/ │ │ ├── bar_spec.rb │ │ ├── byte_rate_spec.rb │ │ ├── current_byte_spec.rb │ │ ├── current_spec.rb │ │ ├── elapsed_spec.rb │ │ ├── estimated_spec.rb │ │ ├── estimated_time_spec.rb │ │ ├── mean_byte_spec.rb │ │ ├── mean_rate_spec.rb │ │ ├── percent_spec.rb │ │ ├── rate_spec.rb │ │ ├── total_byte_spec.rb │ │ └── total_spec.rb │ ├── frequency_spec.rb │ ├── head_spec.rb │ ├── hide_cursor_spec.rb │ ├── indeterminate_spec.rb │ ├── inspect_spec.rb │ ├── iterate_spec.rb │ ├── log_spec.rb │ ├── meter_spec.rb │ ├── multi/ │ │ ├── advance_spec.rb │ │ ├── events_spec.rb │ │ ├── finish_spec.rb │ │ ├── line_inset_spec.rb │ │ ├── pause_spec.rb │ │ ├── register_spec.rb │ │ ├── reset_spec.rb │ │ ├── resume_spec.rb │ │ ├── stop_spec.rb │ │ └── width_spec.rb │ ├── new_spec.rb │ ├── pause_spec.rb │ ├── pipeline_spec.rb │ ├── ratio_spec.rb │ ├── render_spec.rb │ ├── reset_spec.rb │ ├── resize_spec.rb │ ├── resume_spec.rb │ ├── set_current_spec.rb │ ├── start_spec.rb │ ├── stop_spec.rb │ ├── timer_spec.rb │ ├── update_spec.rb │ └── width_spec.rb ├── tasks/ │ ├── console.rake │ ├── coverage.rake │ └── spec.rake └── tty-progressbar.gemspec