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