Sha256: 4d66097785695e21e7877cd5383b4f74b33dcfe93236580c0336f2dc6c283945

Contents?: true

Size: 822 Bytes

Versions: 2734

Compression:

Stored size: 822 Bytes

Contents

class   ProgressBar
module  Components
class   Rate
  attr_accessor :rate_scale,
                :started_at,
                :stopped_at,
                :timer,
                :progress

  def initialize(options = {})
    self.rate_scale = options[:rate_scale] || lambda { |x| x }
    self.started_at = nil
    self.stopped_at = nil
    self.timer      = options[:timer]
    self.progress   = options[:progress]
  end

  private

  def rate_of_change(format_string = '%i')
    return 0 unless elapsed_seconds > 0

    format_string % scaled_rate
  end

  def rate_of_change_with_precision
    rate_of_change('%.2f')
  end

  def scaled_rate
    rate_scale.call(base_rate)
  end

  def base_rate
    progress.absolute / elapsed_seconds
  end

  def elapsed_seconds
    timer.elapsed_whole_seconds.to_f
  end
end
end
end

Version data entries

2,734 entries across 2,684 versions & 45 rubygems

Version Path
zuora_connect_ui-0.9.0 vendor/ruby/2.6.0/gems/ruby-progressbar-1.10.1/lib/ruby-progressbar/components/rate.rb
zuora_connect_ui-0.8.3 vendor/ruby/2.6.0/gems/ruby-progressbar-1.10.1/lib/ruby-progressbar/components/rate.rb
zuora_connect_ui-0.8.2 vendor/ruby/2.6.0/gems/ruby-progressbar-1.10.1/lib/ruby-progressbar/components/rate.rb
zuora_connect_ui-0.8.1 vendor/ruby/2.6.0/gems/ruby-progressbar-1.10.1/lib/ruby-progressbar/components/rate.rb
zuora_connect_ui-0.8.0 vendor/ruby/2.6.0/gems/ruby-progressbar-1.10.1/lib/ruby-progressbar/components/rate.rb
dadapush_client-1.0.1 vendor/bundle/ruby/2.3.0/gems/ruby-progressbar-1.10.1/lib/ruby-progressbar/components/rate.rb
zuora_connect_ui-0.7.1 vendor/ruby/2.6.0/gems/ruby-progressbar-1.10.1/lib/ruby-progressbar/components/rate.rb
zuora_connect_ui-0.7.0 vendor/ruby/2.6.0/gems/ruby-progressbar-1.10.1/lib/ruby-progressbar/components/rate.rb
kinetic_sdk-0.1.1 gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/rate.rb
progressbar-1.10.1 lib/ruby-progressbar/components/rate.rb
ruby-progressbar-1.10.1 lib/ruby-progressbar/components/rate.rb
cspeezy_palindrome-0.3.0 path/ruby/2.6.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/rate.rb
cspeezy_palindrome-0.2.0 path/ruby/2.6.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/rate.rb
cspeezy_palindrome-0.1.0 path/ruby/2.6.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/rate.rb
steenfest_palindrome-0.1.2 ruby/2.5/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/rate.rb
steenfest_palindrome-0.1.1b ruby/2.5/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/rate.rb
nullifyable-0.1.0 vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/rate.rb
dmurphy_palindrome-0.1.0 vendor/cache/ruby/2.3.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/rate.rb
dmurphy_palindrome-0.1.0 vendor/cache/ruby/2.3.0/gems/dmurphy_palindrome-0.1.0/vendor/cache/ruby/2.3.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/rate.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/rate.rb