Sha256: 4adc87cf78d0fe5ab0d3c842bd234fe0db66a3b322751b9ffb64e464f0307cfc

Contents?: true

Size: 491 Bytes

Versions: 163

Compression:

Stored size: 491 Bytes

Contents

require 'ruby-progressbar/output'

class   ProgressBar
module  Outputs
class   Tty < Output
  DEFAULT_FORMAT_STRING = '%t: |%B|'.freeze

  alias refresh_with_format_change with_refresh

  def clear
    stream.print clear_string
    stream.print "\r"
  end

  def bar_update_string
    bar.to_s
  end

  def default_format
    DEFAULT_FORMAT_STRING
  end

  def resolve_format(other_format)
    other_format || default_format
  end

  def eol
    bar.stopped? ? "\n" : "\r"
  end
end
end
end

Version data entries

163 entries across 116 versions & 24 rubygems

Version Path
progressbar-1.8.1 lib/ruby-progressbar/outputs/tty.rb
ruby-progressbar-1.8.1 lib/ruby-progressbar/outputs/tty.rb
ruby-progressbar-1.8.0 lib/ruby-progressbar/outputs/tty.rb