module Tqdm

Add a progress bar to your loops in a second. A port of Python's [tqdm library](github.com/tqdm/tqdm), although we're currently closer to the feature set of [@noamraph's original release](github.com/noamraph/tqdm).

Specifically, `Tqdm` enhances `Enumerable` by printing a progress indicator whenever iterating with `#each` or its close relatives.

@author Theodore Pak @see github.com/tqdm/tqdm

Constants

VERSION

The version of this module and gem by the same name.

Public Class Methods

enhance_sequel!() click to toggle source

Upgrades `Sequel::Datasets` with the with_progress method. @see Enumerable#with_progress

# File lib/tqdm.rb, line 19
def enhance_sequel!
  require 'tqdm/sequel'
end